directory.evnt.event

lexicon.store View official

Documentation

main object

No description available.

Properties

components array of ref#eventComponent Optional

No description available.

instances array of ref#eventInstance Optional

No description available.

label unknown Optional

No description available.

name unknown Required

No description available.

status ref #eventStatus Optional

No description available.

v integer Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "v",
    "name"
  ],
  "properties": {
    "v": {
      "type": "integer",
      "const": 0
    },
    "name": {
      "type": "unknown"
    },
    "label": {
      "type": "unknown"
    },
    "status": {
      "ref": "#eventStatus",
      "type": "ref"
    },
    "venues": {
      "type": "array",
      "items": {
        "refs": [
          "#physicalVenue",
          "#onlineVenue",
          "#unknownVenue"
        ],
        "type": "union"
      }
    },
    "instances": {
      "type": "array",
      "items": {
        "ref": "#eventInstance",
        "type": "ref"
      }
    },
    "components": {
      "type": "array",
      "items": {
        "ref": "#eventComponent",
        "type": "ref"
      }
    }
  }
}
address object

No description available.

Properties

addr string Optional

No description available.

countryCode string Optional

No description available.

postalCode string Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "addr": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "countryCode": {
      "type": "string"
    }
  }
}
coordinates object

No description available.

Properties

lat integer Required

No description available.

lng integer Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "lat",
    "lng"
  ],
  "properties": {
    "lat": {
      "type": "integer"
    },
    "lng": {
      "type": "integer"
    }
  }
}
eventComponent object

No description available.

Properties

data unknown Required

No description available.

type string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "type",
    "data"
  ],
  "properties": {
    "data": {
      "type": "unknown"
    },
    "type": {
      "type": "string"
    }
  }
}
eventInstance object

No description available.

Properties

end string Optional

No description available.

start string Optional

No description available.

status ref #eventStatus Optional

No description available.

venueIds array of string Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "end": {
      "type": "string"
    },
    "start": {
      "type": "string"
    },
    "status": {
      "ref": "#eventStatus",
      "type": "ref"
    },
    "venueIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}
eventStatus string

No description available.

Known Values (other values may be valid)
planned uncertain postponed cancelled suspended
View raw schema
{
  "type": "string",
  "knownValues": [
    "planned",
    "uncertain",
    "postponed",
    "cancelled",
    "suspended"
  ]
}
onlineVenue object

No description available.

Properties

id string Required

No description available.

name unknown Required

No description available.

type string Required

No description available.

url string Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "type",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "name": {
      "type": "unknown"
    },
    "type": {
      "type": "string",
      "const": "online"
    }
  }
}
physicalVenue object

No description available.

Properties

address ref #address Optional

No description available.

coordinates ref #coordinates Optional

No description available.

id string Required

No description available.

name unknown Required

No description available.

type string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "type",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "unknown"
    },
    "type": {
      "type": "string",
      "const": "physical"
    },
    "address": {
      "ref": "#address",
      "type": "ref"
    },
    "coordinates": {
      "ref": "#coordinates",
      "type": "ref"
    }
  }
}
unknownVenue object

No description available.

Properties

id string Required

No description available.

name unknown Required

No description available.

type string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "type",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "unknown"
    },
    "type": {
      "type": "string",
      "const": "unknown"
    }
  }
}

Lexicon Garden

@