mirror of
https://github.com/openziti/ziti.git
synced 2026-09-24 11:26:27 +00:00
39 lines
820 B
JSON
39 lines
820 B
JSON
{
|
|
"$id": "http://ziti-edge.netfoundry.io/schemas/cas.post.json",
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"required": [
|
|
"name",
|
|
"certPem"
|
|
],
|
|
"properties": {
|
|
"name": {
|
|
"$ref": "definitions.all.json#/definitions/name"
|
|
},
|
|
"certPem": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 20480
|
|
},
|
|
"isAutoCaEnrollmentEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"isOttCaEnrollmentEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"isAuthEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"identityRoles": {
|
|
"default": null,
|
|
"$ref": "definitions.all.json#/definitions/arrayOfString-null"
|
|
},
|
|
"tags": {
|
|
"$ref": "definitions.all.json#/definitions/tags-null"
|
|
}
|
|
}
|
|
}
|