{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://verio.dev/schema/project.schema.json",
  "title": "Project record",
  "description": "The project itself \u2014 `.verio/index.yaml`. What the project is known by, and the one file that says a folder is a Verio project at all. Everything else in .verio is the design, the planning, or the change control; this is the project.",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "What the project is called. Shown above the tree, and how the project is named in anything that reports on it."
    }
  }
}
