common.json 1.58 KB
Newer Older
canterafonsj's avatar
canterafonsj committed
{
  "$schema": "http://json-schema.org/schema#",
canterafonsj's avatar
canterafonsj committed
  "id": "https://uri.etsi.org/ngsi-ld/schema/common.json",
canterafonsj's avatar
canterafonsj committed
  "title": "NGSI-LD Common Definitions",
  "description": "NGSI-LD Common",
canterafonsj's avatar
canterafonsj committed
  "definitions": {
canterafonsj's avatar
canterafonsj committed
    "observedAt": {
      "type": "string",
      "format": "date-time"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "modifiedAt": {
      "type": "string",
      "format": "date-time"
    },
canterafonsj's avatar
canterafonsj committed
    "LdContext": {
      "anyOf": [
        {
          "type": "object"
        },
        {
          "type": "string",
          "format": "uri"
        },
        {
          "type": "array",
canterafonsj's avatar
canterafonsj committed
          "minItems": 1,
canterafonsj's avatar
canterafonsj committed
          "items": {
            "anyOf": [
              {
                "type": "string",
                "format": "uri"
              },
              {
                "type": "object"
              }
            ]
          }
        }
      ]
    },
    "Endpoint": {
      "type": "object",
      "required": [
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "uri"
        },
        "accept": {
          "type": "string",
          "enum": [
            "application/json",
            "application/ld+json"
          ]
        }
      }
canterafonsj's avatar
canterafonsj committed
    },
    "EntityInfo": {
canterafonsj's avatar
canterafonsj committed
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uri"
canterafonsj's avatar
canterafonsj committed
        },
canterafonsj's avatar
canterafonsj committed
        "type": {
          "type": "string",
          "minLength": 1
canterafonsj's avatar
canterafonsj committed
        },
canterafonsj's avatar
canterafonsj committed
        "idPattern": {
          "type": "string",
          "format": "regex"
canterafonsj's avatar
canterafonsj committed
        }
canterafonsj's avatar
canterafonsj committed
      }
canterafonsj's avatar
canterafonsj committed
    }
canterafonsj's avatar
canterafonsj committed
  }
canterafonsj's avatar
canterafonsj committed
}