Properties
| Name | Type | Description |
|---|---|---|
| identity | array | |
| name | string | Security realm name |
| managementIdentityDomain | string | Identity domain for management |
| certPathBuilder | array | Certificate path builder reference |
| links | array |
JSON Schema
{
"$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"
}
}
}
}