Files
ziti/controller/embedded/api-schema/entities/authenticator.put.json
T

41 lines
899 B
JSON

{
"$id": "http://ziti-edge.netfoundry.io/schemas/authenticator.put.json",
"anyOf": [
{
"type": "object",
"additionalProperties": true,
"required": [
"certPem"
],
"properties": {
"certPem": {
"type": "string"
},
"tags": {
"default": {},
"$ref": "definitions.all.json#/definitions/tags-null"
}
}
},
{
"type": "object",
"additionalProperties": true,
"required": [
"username",
"password"
],
"properties": {
"username": {
"$ref": "definitions.all.json#/definitions/username"
},
"password": {
"$ref": "definitions.all.json#/definitions/password"
},
"tags": {
"default": {},
"$ref": "definitions.all.json#/definitions/tags-null"
}
}
}
]
}