{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://2bit.jp/maxforge/schema/objects-v1.json",
  "title": "maxforge shared object catalog v1",
  "description": "Reusable external and abstraction metadata imported by maxforge.config.json. Catalog imports are intentionally not recursive.",
  "type": "object",
  "additionalProperties": false,
  "required": ["schemaVersion"],
  "properties": {
    "$schema": { "type": "string" },
    "schemaVersion": { "const": 1 },
    "objects": {
      "type": "array",
      "items": { "$ref": "config-v1.json#/$defs/external" }
    },
    "abstractions": {
      "type": "array",
      "items": { "$ref": "config-v1.json#/$defs/abstraction" }
    }
  }
}
