{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AppKeyItems", "title": "AppKeyItems", "description": "Object representing application keys.", "type": "object", "properties": { "id": { "description": "ID of the application key.", "type": "string" }, "appKey": { "description": "AppKey.", "type": "string" }, "appToken": { "description": "AppToken. For security reasons, it should always be null.", "type": "string", "nullable": true }, "label": { "description": "Label of the application key.", "type": "string" }, "createdIn": { "description": "Creation date of the application key.", "type": "string", "format": "date-time" }, "isActive": { "description": "Defines if the application key is active (`true`) or not (`false`).", "type": "boolean" }, "isBlocked": { "description": "Defines if the application key is blocked (`true`) or not (`false`).", "type": "boolean" } } }