{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "raid-repo.schema.json", "title": "Raid Repository Configuration", "description": "Configuration for a single repository.", "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the repository" }, "branch": { "type": "string", "description": "The branch to checkout" }, "environments": { "$ref": "raid-defs.schema.json#/properties/environments" }, "install": { "$ref": "raid-defs.schema.json#/properties/install" }, "commands": { "$ref": "raid-defs.schema.json#/properties/commands" } }, "required": ["name","branch"] }