forked from infopolicy/dcat-us
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataService.json
More file actions
683 lines (683 loc) · 25 KB
/
DataService.json
File metadata and controls
683 lines (683 loc) · 25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DataService",
"type": "object",
"properties": {
"@id": {
"type": "string",
"format": "iri"
},
"@type": {
"type": "string",
"default": "DataService"
},
"contactPoint": {
"$id": "http://www.w3.org/ns/dcat#contactPoint",
"title": "contact point",
"description": "This property contains contact information that can be used for sending comments about the Data Service.",
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Kind",
"description": "inline description of Kind"
},
{
"type": "string",
"description": "reference iri of Kind",
"format": "iri"
}
]
}
},
"endpointDescription": {
"$id": "http://www.w3.org/ns/dcat#endpointDescription",
"title": "endpoint description",
"description": "A description of the services available via the end-points, including their operations, parameters etc.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string",
"description": "An in-line description of the endpoint description, e.g. a free text description or a machine-readable description such as an OpenAPI specification or similar document."
},
{
"type": "string",
"description": "reference iri of the endpoint description, ie. an OpenAPI specification or similar document",
"format": "iri"
}
]
}
}
]
},
"endpointURL": {
"$id": "http://www.w3.org/ns/dcat#endpointURL",
"title": "endpoint URL",
"description": "The root location or primary endpoint of the service (a Web-resolvable IRI)",
"type": "array",
"items": {
"type": "string",
"description": "The root location or primary endpoint of the service (a Web-resolvable IRI)",
"format": "iri"
}
},
"keyword": {
"$id": "http://www.w3.org/ns/dcat#keyword",
"title": "keyword/tag",
"description": "This property contains a keyword or tag describing the Data Service.",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
]
},
"keywordMap": {
"$id": "http://www.w3.org/ns/dcat#keyword_lang_map",
"description": "Language map for property title. E.g. {'es': 'spanish words', 'fr': 'french words'}",
"type": [
"null",
"object"
]
},
"servesDataset": {
"$id": "http://www.w3.org/ns/dcat#servesDataset",
"title": "serves dataset",
"description": "The Dataset that is served by this data service.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Dataset",
"description": "inline description of Dataset"
},
{
"type": "string",
"description": "reference iri of Dataset",
"format": "iri"
}
]
}
}
]
},
"spatialResolutionInMeters": {
"$id": "http://www.w3.org/ns/dcat#spatialResolutionInMeters",
"title": "spatial resolution in meters",
"description": "This property refers to the minimum spatial separation resolvable in a Data Service, measured in meters.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"temporalResolution": {
"$id": "http://www.w3.org/ns/dcat#temporalResolution",
"title": "temporal resolution",
"description": "The minimum time period resolvable by the Data Service.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"theme": {
"$id": "http://www.w3.org/ns/dcat#theme",
"title": "theme/category",
"description": "This property refers to a theme of the Data Service. A Data Service may be associated with multiple themes.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Concept",
"description": "inline description of Concept"
},
{
"type": "string",
"description": "reference iri of Concept",
"format": "iri"
}
]
}
}
]
},
"geographicBoundingBox": {
"$id": "http://data.resources.gov/ontology/dcat-us#geographicBoundingBox",
"title": "geographic bounding box",
"description": "This property describes the spatial extent of domain of application of an data service and is standardized in WGS 84 Lat/Long coordinate system.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/GeographicBoundingBox",
"description": "inline description of GeographicBoundingBox"
},
{
"type": "string",
"description": "reference iri of GeographicBoundingBox",
"format": "iri"
}
]
}
}
]
},
"accessRights": {
"$id": "http://purl.org/dc/terms/accessRights",
"title": "access rights",
"description": "This property MAY include information regarding access or restrictions based on privacy, security, or other policies.",
"oneOf": [
{
"type": "null"
},
{
"oneOf": [
{
"$ref": "#/definitions/RightsStatement",
"description": "inline description of RightsStatement"
},
{
"type": "string",
"description": "reference iri of RightsStatement",
"format": "iri"
}
]
}
]
},
"conformsTo": {
"$id": "http://purl.org/dc/terms/conformsTo",
"title": "conforms to",
"description": "This property is used to indicate the general standard or specification that the Data Service endpoints implement.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Standard",
"description": "inline description of Standard"
},
{
"type": "string",
"description": "reference iri of Standard",
"format": "iri"
}
]
}
}
]
},
"created": {
"$id": "http://purl.org/dc/terms/created",
"title": "creation date",
"description": "This property contains the date on which the Data Service has been first created.",
"oneOf": [
{
"type": "null"
},
{
"type": "string",
"oneOf": [
{
"format": "date-time"
},
{
"format": "date"
},
{
"pattern": "^[0-9]{4}$",
"description": "A year in YYYY format"
},
{
"pattern": "^[0-9]{4}-[0-9]{2}$",
"description": "A year and month in YYYY-MM format"
}
]
}
]
},
"creator": {
"$id": "http://purl.org/dc/terms/creator",
"title": "creator",
"description": "This property refers to the Agent primarily responsible for producing the Data Service.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Agent",
"description": "inline description of Agent"
},
{
"type": "string",
"description": "reference iri of Agent",
"format": "iri"
}
]
}
}
]
},
"description": {
"$id": "http://purl.org/dc/terms/description",
"title": "description",
"description": "This property contains a free-text account of the Data Service.",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
]
},
"descriptionMap": {
"$id": "http://purl.org/dc/terms/description_lang_map",
"description": "Language map for property title. E.g. {'es': 'spanish words', 'fr': 'french words'}",
"type": [
"null",
"object"
]
},
"identifier": {
"$id": "http://purl.org/dc/terms/identifier",
"title": "identifier",
"description": "This property contains the main identifier for the Data Service, e.g. the URI or other unique identifier in the context of the Catalog.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"language": {
"$id": "http://purl.org/dc/terms/language",
"title": "language",
"description": "This property refers to a language supported by the Data Service. This property can be repeated if multiple languages are supported in the Data Service. This should be provided as an ISO 639-1 language code, which can be seen at https://id.loc.gov/vocabulary/iso639-1.html",
"oneOf": [
{
"type": "null"
},
{
"type": "string",
"maxLength": 2
},
{
"type": "array",
"items": {
"type": "string",
"maxLength": 2
}
}
]
},
"license": {
"$id": "http://purl.org/dc/terms/license",
"title": "license",
"description": "This property refers to the license under which the Data Service is made available.",
"oneOf": [
{
"type": "null"
},
{
"oneOf": [
{
"$ref": "#/definitions/LicenseDocument",
"description": "inline description of LicenseDocument"
},
{
"type": "string",
"description": "reference iri of LicenseDocument",
"format": "iri"
}
]
}
]
},
"modified": {
"$id": "http://purl.org/dc/terms/modified",
"title": "update/modification date",
"description": "This property contains the most recent date on which the Data Service was changed or modified.",
"oneOf": [
{
"type": "null"
},
{
"type": "string",
"oneOf": [
{
"format": "date-time"
},
{
"format": "date"
},
{
"pattern": "^[0-9]{4}$",
"description": "A year in YYYY format"
},
{
"pattern": "^[0-9]{4}-[0-9]{2}$",
"description": "A year and month in YYYY-MM format"
}
]
}
]
},
"publisher": {
"$id": "http://purl.org/dc/terms/publisher",
"title": "publisher",
"description": "This property refers to an entity (organization) responsible for making the Data Service available.",
"oneOf": [
{
"$ref": "#/definitions/Agent",
"description": "inline description of Agent"
},
{
"type": "string",
"description": "reference iri of Agent",
"format": "iri"
}
]
},
"rights": {
"$id": "http://purl.org/dc/terms/rights",
"title": "rights",
"description": "A statement that concerns all rights for the Data Service not addressed with dcterms:license or dcterms:accessRights, such as copyright statements.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/RightsStatement",
"description": "inline description of RightsStatement"
},
{
"type": "string",
"description": "reference iri of RightsStatement",
"format": "iri"
}
]
}
}
]
},
"rightsHolder": {
"$id": "http://purl.org/dc/terms/rightsHolder",
"title": "rights holder",
"description": "This property refers to an Agent (organization) holding rights on the Data Service.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization",
"description": "inline description of Organization"
},
{
"type": "string",
"description": "reference iri of Organization",
"format": "iri"
}
]
}
}
]
},
"spatial": {
"$id": "http://purl.org/dc/terms/spatial",
"title": "spatial/geographic coverage",
"description": "This property refers to a geographic region that is covered by the Data Service.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Location",
"description": "inline description of Location"
},
{
"type": "string",
"description": "reference iri of Location",
"format": "iri"
}
]
}
}
]
},
"temporal": {
"$id": "http://purl.org/dc/terms/temporal",
"title": "temporal coverage",
"description": "A temporal period that the DataService covers.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/PeriodOfTime",
"description": "inline description of PeriodOfTime"
},
{
"type": "string",
"description": "reference iri of PeriodOfTime",
"format": "iri"
}
]
}
}
]
},
"title": {
"$id": "http://purl.org/dc/terms/title",
"title": "title",
"description": "The title of the data service in the indicated language",
"type": "string"
},
"titleMap": {
"$id": "http://purl.org/dc/terms/title_lang_map",
"description": "Language map for property title. E.g. {'es': 'spanish words', 'fr': 'french words'}",
"type": [
"null",
"object"
]
},
"category": {
"$id": "http://purl.org/dc/terms/type",
"title": "category",
"description": "Category of the data service",
"oneOf": [
{
"type": "null"
},
{
"oneOf": [
{
"$ref": "#/definitions/Concept",
"description": "inline description of Concept"
},
{
"type": "string",
"description": "reference iri of Concept",
"format": "iri"
}
]
}
]
},
"hasQualityMeasurement": {
"$id": "http://www.w3.org/ns/dqv#hasQualityMeasurement",
"title": "quality measurement",
"description": "Refers to the performed quality measurements.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/QualityMeasurement",
"description": "inline description of QualityMeasurement"
},
{
"type": "string",
"description": "reference iri of QualityMeasurement",
"format": "iri"
}
]
}
}
]
},
"hasPolicy": {
"$id": "http://www.w3.org/ns/odrl/2/hasPolicy",
"title": "has policy",
"description": "An ODRL conformant policy expressing the rights associated with the Data Service.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Policy",
"description": "inline description of Policy"
},
{
"type": "string",
"description": "reference iri of Policy",
"format": "iri"
}
]
}
}
]
},
"qualifiedAttribution": {
"$id": "http://www.w3.org/ns/prov#qualifiedAttribution",
"title": "qualified attribution",
"description": "This property refers to a link to an Agent having some form of responsibility for the DataService.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Attribution",
"description": "inline description of Attribution"
},
{
"type": "string",
"description": "reference iri of Attribution",
"format": "iri"
}
]
}
}
]
},
"wasUsedBy": {
"$id": "http://www.w3.org/ns/prov#wasUsedBy",
"title": "was used by",
"description": "This property refers to an Activity that used the Data Service.",
"oneOf": [
{
"type": "null"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/Activity",
"description": "inline description of Activity"
},
{
"type": "string",
"description": "reference iri of Activity",
"format": "iri"
}
]
}
}
]
}
},
"required": [
"contactPoint",
"endpointURL",
"publisher",
"title"
]
}