{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-schema/argus-enterprise-token-response-schema.json", "title": "TokenResponse", "description": "TokenResponse schema from ARGUS Enterprise API", "type": "object", "properties": { "access_token": { "type": "string", "description": "Bearer token for API authentication" }, "token_type": { "type": "string", "enum": [ "Bearer" ] }, "expires_in": { "type": "integer", "description": "Token validity duration in seconds" }, "scope": { "type": "string", "description": "Granted scopes" } } }