{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/rackspace-technology/main/json-schema/rackspace-cloud-identity-token-schema.json", "title": "Token", "description": "A Rackspace Cloud Identity authentication token.", "type": "object", "properties": { "id": { "type": "string", "description": "Token identifier (bearer value)." }, "expires": { "type": "string", "format": "date-time" }, "tenant": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } }, "required": ["id", "expires"] }