{
  "$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/feeling-pack-schema-0.1.json",
  "title": "Feeling Domain Pack v0.1",
  "description": "Semantic-event-type = feeling and its permitted statuses.",
  "type": "object",
  "required": [ "semantic-event-type", "semantic-event-status" ],
  "properties": {
    "semantic-event-type": { "const": "feeling" },
    "semantic-event-status": {
      "type": "string",
      "enum": [
        "happy",
        "sad",
        "anxious",
        "angry",
        "lonely",
        "excited",
        "deflated",
        "nervous",
        "tired"
      ]
    }
  },
  "additionalProperties": false
}