{ "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "path": { "oneOf": [ {"type": "string"}, {"enum": [ "''" ]} ] }, "targets": { "type": "array", "items": { "oneOf": [ {"type": "string"}, {"enum": [ "''" ]} ] } }, "folders": { "type": "array", "items": { "type": "object", "properties": { "name": { "oneOf": [ {"type": "string"}, {"enum": [ "''" ]} ] }, "targets": { "type": "array", "items": { "oneOf": [ {"type": "string"}, {"enum": [ "''" ]} ] } } } } } } }