Files
ziti/controller/embedded/api-schema/entities/config.patch.json
T
Paul Lorenz fb8be70394 Implement config store. Fixes GH-17 (#37)
* Implement config store. Fixes GH-17

* Fix PATCH. Allow null tags on patch and add config patch test
2020-01-13 10:55:07 -05:00

20 lines
459 B
JSON

{
"$id": "http://ziti-edge.netfoundry.io/schemas/config.patch.json",
"type": "object",
"additionalProperties": false,
"required": [
],
"properties": {
"name": {
"$ref": "definitions.all.json#/definitions/name-null"
},
"data": {
"default": {},
"$ref": "definitions.all.json#/definitions/config-data-null"
},
"tags": {
"default": {},
"$ref": "definitions.all.json#/definitions/tags-null"
}
}
}