35 lines
760 B
JSON
35 lines
760 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"dots": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"location": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"destination": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"strategy": {
|
||
|
"type": "string",
|
||
|
"enum": ["symlink"]
|
||
|
},
|
||
|
"identifiers": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"required": ["location", "destination", "identifiers"],
|
||
|
"additionalProperties": false
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"required": ["dots"],
|
||
|
"additionalProperties": false
|
||
|
}
|