{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OAuth2Token", "title": "OAuth2Token", "type": "object", "properties": { "_embedded": { "type": "object", "additionalProperties": { "type": "object", "properties": {} }, "readOnly": true }, "_links": { "type": "object", "additionalProperties": { "type": "object", "properties": {} }, "readOnly": true }, "clientId": { "type": "string" }, "created": { "type": "string", "format": "date-time", "readOnly": true }, "expiresAt": { "type": "string", "format": "date-time", "readOnly": true }, "id": { "type": "string", "readOnly": true }, "issuer": { "type": "string" }, "lastUpdated": { "type": "string", "format": "date-time", "readOnly": true }, "scopes": { "type": "array", "items": { "type": "string" } }, "status": { "type": "string", "enum": [ "ACTIVE", "REVOKED" ] }, "userId": { "type": "string" } }, "x-okta-tags": [ "Application" ] }