mirror of
https://github.com/openziti/ziti.git
synced 2026-09-25 03:42:38 +00:00
c8e2729f05
- Updates .gitignore files - Fixes imports
33 lines
713 B
JSON
33 lines
713 B
JSON
{
|
|
"$id": "http://ziti-edge.netfoundry.io/schemas/cas.put.json",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"name",
|
|
"tags",
|
|
"isAutoCaEnrollmentEnabled",
|
|
"isOttCaEnrollmentEnabled",
|
|
"isAuthEnabled"
|
|
],
|
|
"properties": {
|
|
"name": {
|
|
"$ref": "definitions.all.json#/definitions/name"
|
|
},
|
|
"isAutoCaEnrollmentEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"isOttCaEnrollmentEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"isAuthEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"tags": {
|
|
"$ref": "definitions.all.json#/definitions/tags"
|
|
}
|
|
}
|
|
}
|