Entity

EducationHigher EducationUniversityUnited KingdomOpen DataResearch DataSmart CitiesDigital Library

Properties

Name Type Description
entityId string A unique identifier associated with this entity.
name string Friendly name associated with the entity, not used internally.
meta object Metadata associated with the entity, such as room numbers or building name.
position array
feed array
View JSON Schema on GitHub

JSON Schema

newcastle-entity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Entity",
  "$id": "https://api-evangelist.com/newcastle/newcastle-entity-schema.json",
  "type": "object",
  "properties": {
    "entityId": {
      "type": "string",
      "description": "A unique identifier associated with this entity."
    },
    "name": {
      "type": "string",
      "description": "Friendly name associated with the entity, not used internally."
    },
    "meta": {
      "type": "object",
      "description": "Metadata associated with the entity, such as room numbers or building name."
    },
    "position": {
      "type": "array"
    },
    "feed": {
      "type": "array",
      "items": {
        "$ref": "newcastle-feed-schema.json"
      }
    }
  }
}