{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Getappkeysfromaccount", "title": "Getappkeysfromaccount", "description": "Response body for getting all application keys from the account.", "required": [ "id", "appKey", "label", "createdIn", "isActive" ], "type": "object", "properties": { "id": { "description": "ID of the application key.", "type": "string" }, "appKey": { "description": "AppKey.", "type": "string" }, "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" } } }