{
	"$schema": "http://json-schema.org/draft-07/schema",
	"$id": "https://apidocs.iqrf.org/openapi/iqrf-gateway-webapp/schemas/apiKeyModify.json",
	"type": "object",
	"title": "API key to modify",
	"additionalProperties": false,
	"required": [
		"description",
		"expiration"
	],
	"properties": {
		"description": {
			"$id": "#/properties/description",
			"type": "string",
			"title": "API key description",
			"example": "My awesome app"
		},
		"expiration": {
			"$id": "#/properties/expiration",
			"oneOf": [
				{
					"type": "string",
					"format": "date-time"
				},
				{
					"type": "null"
				}
			],
			"title": "API key expiration",
			"example": null
		}
	}
}
