{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-structure/argus-enterprise-token-response-structure.json", "name": "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": "int32", "description": "Token validity duration in seconds" }, "scope": { "type": "string", "description": "Granted scopes" } } }