{
	"$schema": "http://json-schema.org/draft-07/schema",
	"$id": "https://apidocs.iqrf.org/openapi/iqrf-gateway-webapp/schemas/sshHostSshfpRecords.json",
	"type": "array",
	"title": "SSH host SSHFP records",
	"items": {
		"$id": "#/items",
		"type": "object",
		"additionalProperties": false,
		"required": [
			"algorithm",
			"length",
			"fingerprint",
			"comment"
		],
		"properties": {
			"algorithm": {
				"$id": "#/items/properties/algorithm",
				"title": "SSH key algorithm",
				"type": "string",
				"example": "ED25519"
			},
			"length": {
				"$id": "#/items/properties/length",
				"title": "SSH key length",
				"type": "integer",
				"example": 256
			},
			"fingerprint": {
				"$id": "#/items/properties/fingerprint",
				"title": "SSH key fingerprint",
				"type": "string",
				"example": "SHA256:tRvQ8CQPobZlxO0I8/zsimufOTS0m40zkuj5rq6xlPo"
			},
			"comment": {
				"$id": "#/items/properties/comment",
				"title": "SSH key comment",
				"type": "string",
				"example": "user@hostname"
			}
		}
	}
}
