{
  "$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/transport-pack-schema-0.1.json",
  "title": "Transport Domain Pack v0.1",
  "description": "Transport-related events.",
  "type": "object",
  "required": [ "semantic-event-type", "semantic-event-status" ],
  "properties": {
    "semantic-event-type": { "const": "transport" },
    "semantic-event-status": {
      "type": "string",
      "enum": [ "departed", "live-update" ]
    }
  },
  "additionalProperties": false
}