dokytree/samples/it_v1/schemas_builder/parts/secrets.json

67 lines
1.0 KiB
JSON
Raw Normal View History

2023-03-08 23:38:30 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"secrets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"oneOf": [
{"type": "string"},
{"enum": [
"'ad'",
"'https'",
"'ssh'",
"'user'"
]}
]
},
"user": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
},
"password": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
},
"mfa": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"oneOf": [
{"type": "string"},
{"enum": [
"''",
"'totp'",
"'sms'",
"'e-mail'"
]}
]
},
"value": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
}
}
}
}
}
}
}
}
}