{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecurityRealm", "title": "SecurityRealm", "type": "object", "properties": { "identity": { "type": "array", "items": { "type": "string" } }, "name": { "type": "string", "description": "Security realm name" }, "managementIdentityDomain": { "type": "string", "description": "Identity domain for management" }, "certPathBuilder": { "type": "array", "items": { "type": "string" }, "description": "Certificate path builder reference" }, "links": { "type": "array", "items": { "$ref": "#/components/schemas/Link" } } } }