{
  "$schema": "https://json-schema.org/draft-07/schema",
  "allOf": [
    { "$ref": "https://geoar.it/.well-known/schemas/metarverse/v0.1/metarverse-uri-base-schema-0.1.json" }
  ],
  "$id": "https://geoar.it/schemas/semantic-event-types/v0.1/event-pack-schema-0.1.json",
  "title": "General Event Domain Pack v0.1",
  "description": "Generic events such as info sharing and system actions.",
  "type": "object",
  "required": [ "semantic-event-type", "semantic-event-status" ],
  "properties": {
    "semantic-event-type": { "const": "event" },
    "semantic-event-status": {
      "type": "string",
      "enum": [
        "info-given",
        "info-received",
        "navigation-info",
        "schedule-given",
        "rewarded",
        "assisted",
        "feedback-given",
        "review-left"
      ]
    }
  },
  "additionalProperties": false
}