{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ampersand/refs/heads/main/json-schema/ampersand-api-oauth2-authorization-code-tokens-only-schema.json", "title": "Oauth2AuthorizationCodeTokensOnly", "description": "Oauth2AuthorizationCodeTokensOnly schema from Ampersand API", "type": "object", "properties": { "accessToken": { "type": "object", "required": [ "token" ], "description": "The access token for the connection.", "properties": { "token": { "type": "string" }, "issuedAt": { "type": "string", "format": "date-time", "example": "2024-04-22T18:55:28.456076Z" }, "expiresAt": { "type": "string", "format": "date-time", "example": "2024-10-22T18:55:28.456076Z" } } }, "refreshToken": { "type": "object", "required": [ "token" ], "description": "The refresh token to use for the connection.", "properties": { "token": { "type": "string" }, "issuedAt": { "type": "string", "format": "date-time", "example": "2024-04-22T18:55:28.456076Z" }, "expiresAt": { "type": "string", "format": "date-time", "example": "2024-10-22T18:55:28.456076Z" } } }, "scopes": { "type": "array", "items": { "type": "string" }, "description": "The scopes for the tokens." } } }