common.json 1.63 KB
Newer Older
canterafonsj's avatar
canterafonsj committed
1
2
{
  "$schema": "http://json-schema.org/schema#",
canterafonsj's avatar
canterafonsj committed
3
  "id": "https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/schema/common.json",
canterafonsj's avatar
canterafonsj committed
4
5
  "title": "NGSI-LD Common Definitions",
  "description": "NGSI-LD Common",
canterafonsj's avatar
canterafonsj committed
6
  "definitions": {
canterafonsj's avatar
canterafonsj committed
7
8
9
10
11
12
13
14
15
16
17
18
    "observedAt": {
      "type": "string",
      "format": "date-time"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "modifiedAt": {
      "type": "string",
      "format": "date-time"
    },
canterafonsj's avatar
canterafonsj committed
19
20
21
22
23
24
25
26
27
28
29
    "LdContext": {
      "anyOf": [
        {
          "type": "object"
        },
        {
          "type": "string",
          "format": "uri"
        },
        {
          "type": "array",
canterafonsj's avatar
canterafonsj committed
30
          "minItems": 1,
canterafonsj's avatar
canterafonsj committed
31
32
33
34
35
36
37
38
39
40
41
42
43
44
          "items": {
            "anyOf": [
              {
                "type": "string",
                "format": "uri"
              },
              {
                "type": "object"
              }
            ]
          }
        }
      ]
    },
canterafonsj's avatar
canterafonsj committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
    "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
63
64
    },
    "EntityInfo": {
canterafonsj's avatar
canterafonsj committed
65
66
67
68
69
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uri"
canterafonsj's avatar
canterafonsj committed
70
        },
canterafonsj's avatar
canterafonsj committed
71
72
73
        "type": {
          "type": "string",
          "minLength": 1
canterafonsj's avatar
canterafonsj committed
74
        },
canterafonsj's avatar
canterafonsj committed
75
76
77
        "idPattern": {
          "type": "string",
          "format": "regex"
canterafonsj's avatar
canterafonsj committed
78
        }
canterafonsj's avatar
canterafonsj committed
79
80
      },
      "required": ["type"]
canterafonsj's avatar
canterafonsj committed
81
    }
canterafonsj's avatar
canterafonsj committed
82
  }
canterafonsj's avatar
canterafonsj committed
83
}