schematic 0.15.0

A layered serde configuration and schema library.
Documentation
---
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
}