{
  "$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/social-pack-schema-0.1.json",
  "title": "Social Domain Pack v0.1",
  "description": "Events involving social media interactions.",
  "type": "object",
  "required": [ "semantic-event-type", "semantic-event-status" ],
  "properties": {
    "semantic-event-type": { "const": "social" },
    "semantic-event-status": {
      "type": "string",
      "enum": [ "tweet", "story-posted" ]
    }
  },
  "additionalProperties": false
}