---
source: crates/schematic/tests/code_sources_test.rs
expression: "std::fs::read_to_string(file).unwrap()"
---
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Config",
"type": "object",
"required": [
"boolean",
"float",
"number",
"string",
"vector"
],
"properties": {
"boolean": {
"type": "boolean"
},
"float": {
"type": "number"
},
"number": {
"type": "number"
},
"string": {
"type": "string"
},
"vector": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}