{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OauthClientRead", "title": "OauthClientRead", "type": "object", "properties": { "id": { "type": "integer", "description": "Id of the client.", "readOnly": true, "writeOnly": false }, "status": { "type": "string", "description": "The status of the pack group, can be ACTIVE, CANCELLED or CANCELLED_PENDING.", "readOnly": true, "writeOnly": false }, "display_name": { "type": "string", "description": "The display name of this Oauth Client", "readOnly": true, "writeOnly": false }, "client_id": { "type": "string", "description": "The Client ID associated with this Oauth Client", "readOnly": true, "writeOnly": false }, "secret": { "type": "string", "description": "Secret associated with this Oauth Client", "readOnly": true, "writeOnly": false }, "callback_url": { "type": "array", "description": "The callback URLs which are bound to this Oauth Client", "readOnly": true, "writeOnly": false, "items": { "$ref": "#/components/schemas/OauthCallbackUrl" } } } }