{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClientSecret", "title": "ClientSecret", "type": "object", "properties": { "_links": { "type": "object", "additionalProperties": { "type": "object", "properties": {} }, "readOnly": true }, "client_secret": { "type": "string" }, "created": { "type": "string", "format": "date-time", "readOnly": true }, "id": { "type": "string", "readOnly": true }, "lastUpdated": { "type": "string", "format": "date-time", "readOnly": true }, "secret_hash": { "type": "string" }, "status": { "type": "string", "enum": [ "ACTIVE", "INACTIVE" ] } }, "x-okta-tags": [ "Application" ] }