{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/zitadel/refs/heads/main/json-schema/zitadel-management-application-schema.json", "title": "Application", "type": "object", "properties": { "id": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string", "enum": ["APP_STATE_ACTIVE", "APP_STATE_INACTIVE", "APP_STATE_REMOVED"]}, "appType": {"type": "string", "enum": ["OIDC", "SAML", "API"]}, "details": {"$ref": "zitadel-management-object-details-schema.json"} }, "required": ["id", "name"] }