Files
ziti/controller/embedded/api-schema/entities/identity.patch.json
T
2020-01-22 14:01:09 -05:00

41 lines
754 B
JSON

{
"$id": "http://ziti-edge.netfoundry.io/schemas/identities.patch.json",
"type": "object",
"additionalProperties": false,
"required": [
],
"properties": {
"name": {
"$ref": "definitions.all.json#/definitions/name-null"
},
"type": {
"type": [
"string",
"null"
],
"enum": [
null,
"User",
"Device",
"Service"
]
},
"roleAttributes": {
"default": null,
"$ref": "definitions.all.json#/definitions/arrayOfString-null"
},
"tags": {
"default": {},
"$ref": "definitions.all.json#/definitions/tags-null"
},
"isAdmin": {
"type": [
"boolean",
"null"
],
"default": false
}
}
}