@open-resource-discovery/specification 1.10.1 → 1.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/types/v1/Configuration.d.ts +12 -1
- package/dist/types/v1/Document.d.ts +82 -56
- package/package.json +4 -4
- package/static/spec-v1/interfaces/Configuration.annotated.schema.json +16 -1
- package/static/spec-v1/interfaces/Configuration.schema.json +16 -1
- package/static/spec-v1/interfaces/Document.annotated.schema.json +404 -90
- package/static/spec-v1/interfaces/Document.schema.json +378 -85
@@ -15,6 +15,9 @@
|
|
15
15
|
"items": {
|
16
16
|
"$ref": "#/definitions/V1DocumentDescription"
|
17
17
|
}
|
18
|
+
},
|
19
|
+
"capabilities": {
|
20
|
+
"$ref": "#/definitions/V1Capabilities"
|
18
21
|
}
|
19
22
|
},
|
20
23
|
"additionalProperties": false
|
@@ -57,6 +60,18 @@
|
|
57
60
|
"accessStrategies"
|
58
61
|
]
|
59
62
|
},
|
63
|
+
"V1Capabilities": {
|
64
|
+
"type": "object",
|
65
|
+
"title": "ORD V1 Capabilities",
|
66
|
+
"description": "List of capabilities that are supported by the ORD provider.",
|
67
|
+
"properties": {
|
68
|
+
"selector": {
|
69
|
+
"type": "boolean",
|
70
|
+
"default": false,
|
71
|
+
"description": "Whether the ORD provider supports the optional [select parameter](../index.md#select-parameter) for retrieving the ORD config and ORD documents."
|
72
|
+
}
|
73
|
+
}
|
74
|
+
},
|
60
75
|
"AccessStrategy": {
|
61
76
|
"type": "object",
|
62
77
|
"title": "Access Strategy",
|
@@ -130,7 +145,7 @@
|
|
130
145
|
"$schema": {
|
131
146
|
"type": "string",
|
132
147
|
"format": "uri-reference",
|
133
|
-
"description": "Optional URL to the ORD
|
148
|
+
"description": "Optional URL to the ORD Configuration schema (defined as JSON Schema).\nIf given, this enables code intelligence and validation in supported editors (like VSCode) and tools.",
|
134
149
|
"anyOf": [
|
135
150
|
{
|
136
151
|
"type": "string",
|