{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://intelligentliving.art/schemas/inventory/v1.json",
  "title": "Living Art Curated Inventory v1",
  "type": "object",
  "required": [
    "type",
    "version",
    "account",
    "defaultUnknownStatus",
    "items"
  ],
  "properties": {
    "$schema": {
      "type": "string"
    },
    "type": {
      "const": "https://intelligentliving.art/protocols/curated-inventory/v1.json"
    },
    "version": {
      "type": "string"
    },
    "account": {
      "type": "string",
      "minLength": 1
    },
    "defaultUnknownStatus": {
      "const": "quarantined"
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "asset",
          "status",
          "acceptedBy",
          "recordedAt"
        ],
        "properties": {
          "asset": {
            "type": "string",
            "minLength": 1
          },
          "status": {
            "enum": [
              "accepted",
              "hidden",
              "archived",
              "rejected",
              "quarantined"
            ]
          },
          "acceptedBy": {
            "enum": [
              "creator",
              "owner",
              "none"
            ]
          },
          "recordedAt": {
            "type": "string",
            "format": "date-time"
          },
          "label": {
            "type": "string"
          },
          "reason": {
            "type": "string"
          },
          "metadataURI": {
            "type": "string"
          }
        },
        "additionalProperties": false
      }
    }
  },
  "additionalProperties": false
}
