{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://visuals.thegr0ve.com/schemas/collection-registry.schema.json",
  "title": "Collection Registry Entry",
  "type": "object",
  "required": [
    "collection_id",
    "slug",
    "title",
    "description",
    "atom_ids",
    "status"
  ],
  "properties": {
    "collection_id": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "kicker": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "include_totems": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "include_families": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "atom_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": "string"
    },
    "notes": {
      "type": "string"
    }
  },
  "additionalProperties": false
}
