{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://usedeed.app/contracts/deed.design_contract.v1.schema.json",
  "title": "DEED design contract",
  "type": "object",
  "required": ["$schema", "$version", "authority", "tokens", "primitiveContract", "gates"],
  "properties": {
    "$schema": { "const": "https://usedeed.app/contracts/deed.design_contract.v1.schema.json" },
    "$version": { "type": "string", "minLength": 1 },
    "authority": { "type": ["string", "object"] },
    "tokens": { "type": "object" },
    "primitiveContract": { "type": "object" },
    "gates": { "type": "object" }
  }
}
