Files
ziti/controller/embedded/api-schema/entities/ca.post.json
T
Andrew Martinez cff179b86f api model changes
2020-03-23 11:03:02 -04:00

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"
}
}
}