Files
ziti/controller/embedded/api-schema/entities/authenticator.put.json
T
Andrew Martinez 046128194a fixes #86
- restores /current-identity
- restores /authenticators
- adds tests for both endpoints
2020-02-21 08:29:46 -05:00

41 lines
901 B
JSON

{
"$id": "http://ziti-edge.netfoundry.io/schemas/authenticator.put.json",
"oneOf": [
{
"type": "object",
"additionalProperties": false,
"required": [
"certPem"
],
"properties": {
"certPem": {
"type": "string"
},
"tags": {
"default": {},
"$ref": "definitions.all.json#/definitions/tags-null"
}
}
},
{
"type": "object",
"additionalProperties": false,
"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"
}
}
}
]
}