JSON Schema Draft 07
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://www.ssofy.com/schema/token.json",
"type": "object",
"required": [
"token",
"ttl"
],
"properties": {
"token": {
"$id": "#/properties/token",
"title": "Token",
"type": "string"
},
"ttl": {
"$id": "#/properties/ttl",
"title": "TTL (seconds)",
"type": "integer"
}
},
"additionalProperties": false
}