{
	"$schema": "http://json-schema.org/draft-07/schema",
	"$id": "https://apidocs.iqrf.org/openapi/iqrf-gateway-webapp/schemas/sshKeyDetail.json",
	"type": "object",
	"title": "Authorized SSH public key",
	"required": [
		"id",
		"type",
		"key",
		"hash",
		"description",
		"createdAt"
	],
	"additionalProperties": false,
	"properties": {
		"id": {
			"$id": "#/properties/id",
			"title": "SSH key ID",
			"type": "integer",
			"minimum": 0,
			"example": 0
		},
		"type": {
			"$id": "#/properties/type",
			"title": "SSH key type",
			"type": "string",
			"example": "ssh-rsa"
		},
		"key": {
			"$id": "#/properties/key",
			"title": "SSH public key",
			"type": "string",
			"example": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCqql6MzstZYh1TmWWv11q5O3pISj2ZFl9HgH1JLknLLx44+tXfJ7mIrKNxOOwxIxvcBF8PXSYvobFYEZjGIVCEAjrUzLiIxbyCoxVyle7Q+bqgZ8SeeM8wzytsY+dVGcBxF6N4JS+zVk5eMcV385gG3Y6ON3EG112n6d+SMXY0OEBIcO6x+PnUSGHrSgpBgX7Ks1r7xqFa7heJLLt2wWwkARptX7udSq05paBhcpB0pHtA1Rfz3K2B+ZVIpSDfki9UVKzT8JUmwW6NNzSgxUfQHGwnW7kj4jp4AT0VZk3ADw497M2G/12N0PPB5CnhHf7ovgy6nL1ikrygTKRFmNZISvAcywB9GVqNAVE+ZHDSCuURNsAInVzgYo9xgJDW8wUw2o8U77+xiFxgI5QSZX3Iq7YLMgeksaO4rBJEa54k8m5wEiEE1nUhLuJ0X/vh2xPff6SQ1BL/zkOhvJCACK6Vb15mDOeCSq54Cr7kvS46itMosi/uS66+PujOO+xt/2FWYepz6ZlN70bRly57Q06J+ZJoc9FfBCbCyYH7U/ASsmY095ywPsBo1XQ9PqhnN1/YOorJ068foQDNVpm146mUpILVxmq41Cj55YKHEazXGsdBIbXWhcrRf4G2fJLRcGUr9q8/lERo9oxRm5JFX6TCmj6kmiFqv+Ow9gI0x8GvaQ== example-key"
		},
		"hash": {
			"$id": "#/properties/hash",
			"title": "SSH key hash",
			"type": "string",
			"example": "SHA256:JNjbaNWv2Nau8+R75Eq4f9j2JDdxS8fpFPp9cZVAcV0"
		},
		"description": {
			"$id": "#/properties/description",
			"title": "SSH key description",
			"type": "string",
			"example": "example-key"
		},
		"createdAt": {
			"$id": "#/properties/createdAt",
			"title": "Date created",
			"type": "string",
			"format": "date-time",
			"example": "2021-07-25T00:00:00+02:00"
		}
	}
}
