{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FindBetterApp Data Pack v1",
  "type": "object",
  "required": [
    "schema_version",
    "tools"
  ],
  "properties": {
    "schema_version": {
      "const": "fba-data-pack-v1"
    },
    "pack_name": {
      "type": "string"
    },
    "pack_version": {
      "type": "string"
    },
    "merge_mode": {
      "enum": [
        "fill_missing_only",
        "append_or_fill"
      ]
    },
    "tools": {
      "type": [
        "array",
        "object"
      ],
      "description": "New or updated canonical tools. Existing tools are filled only where fields are missing."
    },
    "relationships": {
      "type": "array",
      "description": "Alternative/comparison relationships between tool ids."
    },
    "notes": {
      "type": "string"
    }
  }
}