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

22 lines
303 B
JSON
Raw Permalink Normal View History

2023-03-08 23:38:30 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"usergroups": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
}
}
}
}
}
}