mirror of
https://github.com/openziti/ziti.git
synced 2026-09-24 03:16:23 +00:00
41 lines
753 B
JSON
41 lines
753 B
JSON
{
|
|
"$id": "http://ziti-edge.netfoundry.io/schemas/identities.patch.json",
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
|