forked from hypercerts-org/hypercerts-lexicon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocation.json
More file actions
68 lines (68 loc) · 1.99 KB
/
Copy pathlocation.json
File metadata and controls
68 lines (68 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"lexicon": 1,
"id": "app.certified.location",
"defs": {
"main": {
"type": "record",
"description": "A location reference",
"key": "any",
"record": {
"type": "object",
"required": [
"lpVersion",
"srs",
"locationType",
"location",
"createdAt"
],
"properties": {
"lpVersion": {
"type": "string",
"description": "The version of the Location Protocol",
"maxLength": 10
},
"srs": {
"type": "string",
"format": "uri",
"description": "The Spatial Reference System URI (e.g., http://www.opengis.net/def/crs/OGC/1.3/CRS84) that defines the coordinate system.",
"maxLength": 100
},
"locationType": {
"type": "string",
"description": "An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point)",
"knownValues": [
"coordinate-decimal",
"geojson-point"
],
"maxLength": 20
},
"location": {
"type": "union",
"refs": [
"app.certified.defs#uri",
"app.certified.defs#smallBlob"
],
"description": "The location of where the work was performed as a URI or blob."
},
"name": {
"type": "string",
"description": "Optional name for this location",
"maxLength": 1000,
"maxGraphemes": 100
},
"description": {
"type": "string",
"description": "Optional description for this location",
"maxLength": 2000,
"maxGraphemes": 500
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was originally created"
}
}
}
}
}
}