mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-24 00:26:11 +00:00
67 lines
1.0 KiB
JSON
67 lines
1.0 KiB
JSON
{
|
|
"$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": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |