--- source: crates/config/tests/variants_test.rs expression: "std::fs::read_to_string(file).unwrap()" --- { "$schema": "http://json-schema.org/draft-07/schema#", "title": "StandardSettings", "type": "object", "required": [ "projects" ], "properties": { "projects": { "allOf": [ { "$ref": "#/definitions/Projects" } ] } }, "additionalProperties": false, "definitions": { "Projects": { "title": "Projects", "anyOf": [ { "$ref": "#/definitions/ProjectsConfig" }, { "type": "array", "items": { "type": "string" } }, { "type": "object", "additionalProperties": { "type": "string" }, "propertyNames": { "type": "string" } } ] }, "ProjectsConfig": { "title": "ProjectsConfig", "type": "object", "required": [ "list", "map" ], "properties": { "list": { "type": "array", "items": { "type": "string" } }, "map": { "type": "object", "additionalProperties": { "type": "string" }, "propertyNames": { "type": "string" } } }, "additionalProperties": false } } }