mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-24 16:46:11 +00:00
49 lines
748 B
JSON
49 lines
748 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"folders": {
|
|
"type": "array",
|
|
"items": {
|
|
"properties": {
|
|
"path": {
|
|
"oneOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"acls": {
|
|
"type": "array",
|
|
"items": {
|
|
"properties": {
|
|
"name": {
|
|
"oneOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"access": {
|
|
"oneOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''",
|
|
"'RO'",
|
|
"'RW'",
|
|
"'traversal'",
|
|
"'DENY'"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|