@open-resource-discovery/specification 1.9.11 → 1.10.0
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.
@@ -17,7 +17,7 @@ export interface ORDDocument {
|
|
17
17
|
/**
|
18
18
|
* Version of the Open Resource Discovery specification that is used to describe this document.
|
19
19
|
*/
|
20
|
-
openResourceDiscovery: "1.0" | "1.1" | "1.2" | "1.3" | "1.4" | "1.5" | "1.6" | "1.7" | "1.8" | "1.9";
|
20
|
+
openResourceDiscovery: "1.0" | "1.1" | "1.2" | "1.3" | "1.4" | "1.5" | "1.6" | "1.7" | "1.8" | "1.9" | "1.10";
|
21
21
|
/**
|
22
22
|
* Optional description of the ORD document itself.
|
23
23
|
* Please note that this information is NOT further processed or considered by an ORD aggregator.
|
@@ -26,6 +26,8 @@ export interface ORDDocument {
|
|
26
26
|
*/
|
27
27
|
description?: string;
|
28
28
|
describedSystemInstance?: SystemInstance;
|
29
|
+
describedSystemType?: SystemType;
|
30
|
+
describedSystemVersion?: SystemVersion;
|
29
31
|
/**
|
30
32
|
* The [policy level](../../spec-extensions/policy-levels/) (aka. compliance level) that the described resources need to be compliant with.
|
31
33
|
* Depending on the chosen policy level, additional expectations and validations rules will be applied.
|
@@ -108,8 +110,9 @@ export interface ORDDocument {
|
|
108
110
|
tombstones?: Tombstone[];
|
109
111
|
}
|
110
112
|
/**
|
111
|
-
* A
|
112
|
-
* In a multi-tenant system,
|
113
|
+
* A [system instance](../index.md#def-system-instance) is a concrete, running instance of a system type.
|
114
|
+
* In a multi-tenant system, it corresponds to a tenant.
|
115
|
+
* In a single-tenant system, it corresponds to the [system installation](../index.md#def-system-deployment) itself.
|
113
116
|
*/
|
114
117
|
export interface SystemInstance {
|
115
118
|
/**
|
@@ -138,6 +141,8 @@ export interface SystemInstance {
|
|
138
141
|
* MUST be a valid [Correlation ID](../index.md#correlation-id).
|
139
142
|
*/
|
140
143
|
correlationIds?: string[];
|
144
|
+
labels?: Labels;
|
145
|
+
documentationLabels?: DocumentationLabels;
|
141
146
|
/**
|
142
147
|
* List of free text style tags.
|
143
148
|
* No special characters are allowed except `-`, `_`, `.`, `/` and ` `.
|
@@ -145,8 +150,6 @@ export interface SystemInstance {
|
|
145
150
|
* Tags that are assigned to a `Package` are inherited to all of the ORD resources it contains.
|
146
151
|
*/
|
147
152
|
tags?: string[];
|
148
|
-
labels?: Labels;
|
149
|
-
documentationLabels?: DocumentationLabels;
|
150
153
|
}
|
151
154
|
/**
|
152
155
|
* Generic labels that can be applied to most ORD information.
|
@@ -193,6 +196,70 @@ export interface DocumentationLabels {
|
|
193
196
|
*/
|
194
197
|
[k: string]: string[];
|
195
198
|
}
|
199
|
+
/**
|
200
|
+
* A [system type](../index.md#def-system-type) is the abstract type of an application or service, from operational perspective.
|
201
|
+
*/
|
202
|
+
export interface SystemType {
|
203
|
+
/**
|
204
|
+
* The system namespace is a unique identifier for the system type.
|
205
|
+
* It is used to reference the system type in the ORD.
|
206
|
+
*/
|
207
|
+
systemNamespace?: string;
|
208
|
+
/**
|
209
|
+
* Correlation IDs can be used to create a reference to related data in other repositories (especially to the system of record).
|
210
|
+
*
|
211
|
+
* They express an "identity" / "equals" / "mappable" relationship to the target ID.
|
212
|
+
*
|
213
|
+
* If a "part of" relationship needs to be expressed, use the `partOfGroups` assignment instead.
|
214
|
+
*
|
215
|
+
* MUST be a valid [Correlation ID](../index.md#correlation-id).
|
216
|
+
*/
|
217
|
+
correlationIds?: string[];
|
218
|
+
labels?: Labels;
|
219
|
+
documentationLabels?: DocumentationLabels;
|
220
|
+
/**
|
221
|
+
* List of free text style tags.
|
222
|
+
* No special characters are allowed except `-`, `_`, `.`, `/` and ` `.
|
223
|
+
*
|
224
|
+
* Tags that are assigned to a `Package` are inherited to all of the ORD resources it contains.
|
225
|
+
*/
|
226
|
+
tags?: string[];
|
227
|
+
}
|
228
|
+
/**
|
229
|
+
* A [system version](../index.md#def-system-version) states the design-time version / release of a [system instance](../index.md#def-system-instance).
|
230
|
+
* It provides versioning for operational purposes for the [system type](../index.md#def-system-type).
|
231
|
+
*/
|
232
|
+
export interface SystemVersion {
|
233
|
+
/**
|
234
|
+
* The version number of the system instance (run-time) or the version of the described static system type.
|
235
|
+
*
|
236
|
+
* It MUST follow the [Semantic Versioning 2.0.0](https://semver.org/) standard.
|
237
|
+
*/
|
238
|
+
version?: string;
|
239
|
+
/**
|
240
|
+
* Human-readable title of the system version.
|
241
|
+
*/
|
242
|
+
title?: string;
|
243
|
+
/**
|
244
|
+
* Correlation IDs can be used to create a reference to related data in other repositories (especially to the system of record).
|
245
|
+
*
|
246
|
+
* They express an "identity" / "equals" / "mappable" relationship to the target ID.
|
247
|
+
*
|
248
|
+
* If a "part of" relationship needs to be expressed, use the `partOfGroups` assignment instead.
|
249
|
+
*
|
250
|
+
* MUST be a valid [Correlation ID](../index.md#correlation-id).
|
251
|
+
*/
|
252
|
+
correlationIds?: string[];
|
253
|
+
labels?: Labels;
|
254
|
+
documentationLabels?: DocumentationLabels;
|
255
|
+
/**
|
256
|
+
* List of free text style tags.
|
257
|
+
* No special characters are allowed except `-`, `_`, `.`, `/` and ` `.
|
258
|
+
*
|
259
|
+
* Tags that are assigned to a `Package` are inherited to all of the ORD resources it contains.
|
260
|
+
*/
|
261
|
+
tags?: string[];
|
262
|
+
}
|
196
263
|
/**
|
197
264
|
* The API Resource provides a high-level description of an exposed API.
|
198
265
|
* You can find more information, such as the API resource definitions, in the links in the table below.
|
@@ -210,7 +277,7 @@ export interface DocumentationLabels {
|
|
210
277
|
*/
|
211
278
|
export interface APIResource {
|
212
279
|
/**
|
213
|
-
* The
|
280
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
214
281
|
*
|
215
282
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
216
283
|
*/
|
@@ -314,7 +381,7 @@ export interface APIResource {
|
|
314
381
|
* It SHOULD be changed if the ORD information or referenced resource definitions changed.
|
315
382
|
* It SHOULD express minor and patch changes that don't lead to incompatible changes.
|
316
383
|
*
|
317
|
-
* When the `version` major version changes, the [ORD ID](#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
384
|
+
* When the `version` major version changes, the [ORD ID](../index.md#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
318
385
|
* In case that a resource definition file also contains a version number (e.g. [OpenAPI `info`.`version`](https://swagger.io/specification/#info-object)), it MUST be equal with the resource `version` to avoid inconsistencies.
|
319
386
|
*
|
320
387
|
* If the resource has been extended by the user, the change MUST be indicated via `lastUpdate`.
|
@@ -360,6 +427,11 @@ export interface APIResource {
|
|
360
427
|
*
|
361
428
|
*/
|
362
429
|
disabled?: boolean;
|
430
|
+
/**
|
431
|
+
* The resource has been introduced in the given [system version](../index.md#def-system-version).
|
432
|
+
* This implies that the resource is only available if the system instance is of at least that system version.
|
433
|
+
*/
|
434
|
+
minSystemVersion?: string;
|
363
435
|
/**
|
364
436
|
* The deprecation date defines when the resource has been set as deprecated.
|
365
437
|
* This is not to be confused with the `sunsetDate` which defines when the resource will be actually decommissioned / removed.
|
@@ -441,7 +513,7 @@ export interface APIResource {
|
|
441
513
|
*
|
442
514
|
* All APIs that share the same implementation standard MAY be treated the same or similar by a consumer client.
|
443
515
|
*/
|
444
|
-
implementationStandard?: "sap:ord-document-api:v1" | "cff:open-service-broker:v2" | "sap:csn-exposure:v1" | "sap:ape-api:v1" | "sap:cdi-api:v1" | "sap:delta-sharing:v1" | "sap:hana-cloud-sql:v1" | "custom";
|
516
|
+
implementationStandard?: "sap:ord-document-api:v1" | "cff:open-service-broker:v2" | "sap:csn-exposure:v1" | "sap:ape-api:v1" | "sap:cdi-api:v1" | "sap:delta-sharing:v1" | "sap:hana-cloud-sql:v1" | "sap.dp:data-subscription-api:v1" | "custom";
|
445
517
|
/**
|
446
518
|
* If the fixed `implementationStandard` values need to be extended, an arbitrary `customImplementationStandard` can be provided.
|
447
519
|
*
|
@@ -458,6 +530,15 @@ export interface APIResource {
|
|
458
530
|
* SHOULD contain documentation and links that describe the used standard.
|
459
531
|
*/
|
460
532
|
customImplementationStandardDescription?: string;
|
533
|
+
/**
|
534
|
+
* Declares this API is a compatible implementation of the referenced API contract(s).
|
535
|
+
* This is also sometimes known as [Service Provider Interface](https://en.wikipedia.org/wiki/Service_provider_interface).
|
536
|
+
*
|
537
|
+
* MUST be a valid reference to an (usually external) [API Resource](#api-resource) ORD ID.
|
538
|
+
*
|
539
|
+
* All APIs that share the same `compatibleWith` value MAY be treated the same or similar by a consumer client.
|
540
|
+
*/
|
541
|
+
compatibleWith?: string[];
|
461
542
|
/**
|
462
543
|
* Contains typically the organization that is responsible in the sense of RACI matrix for this ORD resource. This includes support and feature requests. It is maintained as correlation id to for example support components.
|
463
544
|
*/
|
@@ -697,7 +778,7 @@ export interface AccessStrategy {
|
|
697
778
|
* As a consequence, there are different types of selectors that are specialized toward certain resource definition formats.
|
698
779
|
*
|
699
780
|
* The target of the mapping is a correlation to an entity type via a [Correlation ID](../../#/v1/README?id=correlation-id)
|
700
|
-
* or to an [ORD ID] of an entity type.
|
781
|
+
* or to an [ORD ID](../../spec-v1/#ord-id) of an entity type.
|
701
782
|
* It is assumed that the entity types are described in more detail or on a different abstraction level via metadata.
|
702
783
|
* When the correlation ID is used, an ORD consumer may need to know how to access the entity type metadata through conventions.
|
703
784
|
* This can be determined either by the namespace of the correlation ID,
|
@@ -784,7 +865,7 @@ export interface APIModelSelectorJSONPointer {
|
|
784
865
|
*/
|
785
866
|
export interface EntityTypeTargetORDID {
|
786
867
|
/**
|
787
|
-
* The
|
868
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
788
869
|
*
|
789
870
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
790
871
|
*/
|
@@ -879,7 +960,7 @@ export interface Extensible {
|
|
879
960
|
*/
|
880
961
|
export interface EventResource {
|
881
962
|
/**
|
882
|
-
* The
|
963
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
883
964
|
*
|
884
965
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
885
966
|
*/
|
@@ -983,7 +1064,7 @@ export interface EventResource {
|
|
983
1064
|
* It SHOULD be changed if the ORD information or referenced resource definitions changed.
|
984
1065
|
* It SHOULD express minor and patch changes that don't lead to incompatible changes.
|
985
1066
|
*
|
986
|
-
* When the `version` major version changes, the [ORD ID](#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
1067
|
+
* When the `version` major version changes, the [ORD ID](../index.md#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
987
1068
|
* In case that a resource definition file also contains a version number (e.g. [OpenAPI `info`.`version`](https://swagger.io/specification/#info-object)), it MUST be equal with the resource `version` to avoid inconsistencies.
|
988
1069
|
*
|
989
1070
|
* If the resource has been extended by the user, the change MUST be indicated via `lastUpdate`.
|
@@ -1029,6 +1110,11 @@ export interface EventResource {
|
|
1029
1110
|
*
|
1030
1111
|
*/
|
1031
1112
|
disabled?: boolean;
|
1113
|
+
/**
|
1114
|
+
* The resource has been introduced in the given [system version](../index.md#def-system-version).
|
1115
|
+
* This implies that the resource is only available if the system instance is of at least that system version.
|
1116
|
+
*/
|
1117
|
+
minSystemVersion?: string;
|
1032
1118
|
/**
|
1033
1119
|
* The deprecation date defines when the resource has been set as deprecated.
|
1034
1120
|
* This is not to be confused with the `sunsetDate` which defines when the resource will be actually decommissioned / removed.
|
@@ -1097,6 +1183,15 @@ export interface EventResource {
|
|
1097
1183
|
* SHOULD contain documentation and links that describe the used standard.
|
1098
1184
|
*/
|
1099
1185
|
customImplementationStandardDescription?: string;
|
1186
|
+
/**
|
1187
|
+
* Declares this event resource is a compatible implementation of the referenced contract.
|
1188
|
+
* This is also sometimes known as [Service Provider Interface](https://en.wikipedia.org/wiki/Service_provider_interface).
|
1189
|
+
*
|
1190
|
+
* MUST be a valid reference to an (usually external) [Event Resource](#event-resource) ORD ID.
|
1191
|
+
*
|
1192
|
+
* All event resources that share the same `compatibleWith` value MAY be treated the same or similar by a consumer client.
|
1193
|
+
*/
|
1194
|
+
compatibleWith?: string[];
|
1100
1195
|
/**
|
1101
1196
|
* Contains typically the organization that is responsible in the sense of RACI matrix for this ORD resource. This includes support and feature requests. It is maintained as correlation id to for example support components.
|
1102
1197
|
*/
|
@@ -1237,7 +1332,7 @@ export interface EventResourceDefinition {
|
|
1237
1332
|
*/
|
1238
1333
|
export interface EntityType {
|
1239
1334
|
/**
|
1240
|
-
* The
|
1335
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
1241
1336
|
*
|
1242
1337
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
1243
1338
|
*/
|
@@ -1316,7 +1411,7 @@ export interface EntityType {
|
|
1316
1411
|
* It SHOULD be changed if the ORD information or referenced resource definitions changed.
|
1317
1412
|
* It SHOULD express minor and patch changes that don't lead to incompatible changes.
|
1318
1413
|
*
|
1319
|
-
* When the `version` major version changes, the [ORD ID](#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
1414
|
+
* When the `version` major version changes, the [ORD ID](../index.md#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
1320
1415
|
* In case that a resource definition file also contains a version number (e.g. [OpenAPI `info`.`version`](https://swagger.io/specification/#info-object)), it MUST be equal with the resource `version` to avoid inconsistencies.
|
1321
1416
|
*
|
1322
1417
|
* If the resource has been extended by the user, the change MUST be indicated via `lastUpdate`.
|
@@ -1454,7 +1549,7 @@ export interface EntityType {
|
|
1454
1549
|
*/
|
1455
1550
|
export interface RelatedEntityType {
|
1456
1551
|
/**
|
1457
|
-
* The
|
1552
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
1458
1553
|
*
|
1459
1554
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
1460
1555
|
*/
|
@@ -1469,7 +1564,7 @@ export interface RelatedEntityType {
|
|
1469
1564
|
*/
|
1470
1565
|
export interface Capability {
|
1471
1566
|
/**
|
1472
|
-
* The
|
1567
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
1473
1568
|
*
|
1474
1569
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
1475
1570
|
*/
|
@@ -1550,7 +1645,7 @@ export interface Capability {
|
|
1550
1645
|
* It SHOULD be changed if the ORD information or referenced resource definitions changed.
|
1551
1646
|
* It SHOULD express minor and patch changes that don't lead to incompatible changes.
|
1552
1647
|
*
|
1553
|
-
* When the `version` major version changes, the [ORD ID](#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
1648
|
+
* When the `version` major version changes, the [ORD ID](../index.md#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
1554
1649
|
* In case that a resource definition file also contains a version number (e.g. [OpenAPI `info`.`version`](https://swagger.io/specification/#info-object)), it MUST be equal with the resource `version` to avoid inconsistencies.
|
1555
1650
|
*
|
1556
1651
|
* If the resource has been extended by the user, the change MUST be indicated via `lastUpdate`.
|
@@ -1583,6 +1678,24 @@ export interface Capability {
|
|
1583
1678
|
* The `releaseStatus` specifies the stability of the resource and its external contract.
|
1584
1679
|
*/
|
1585
1680
|
releaseStatus: "active" | "beta" | "deprecated";
|
1681
|
+
/**
|
1682
|
+
* Indicates that this resource is currently not available for consumption at runtime, but could be configured to be so.
|
1683
|
+
* This can happen either because it has not been setup for use or disabled by an admin / user.
|
1684
|
+
*
|
1685
|
+
* If the resource is not available in principle for a particular system instance, e.g. due to lack of entitlement, it MUST not be described in the system-instance aware perspective.
|
1686
|
+
*
|
1687
|
+
* This property can only reflect the knowledge of the described system instance itself.
|
1688
|
+
* Outside factors for availability can't need to be considered (e.g. network connectivity, middlewares).
|
1689
|
+
*
|
1690
|
+
* A disabled resource MAY skip describing its resource definitions.
|
1691
|
+
*
|
1692
|
+
*/
|
1693
|
+
disabled?: boolean;
|
1694
|
+
/**
|
1695
|
+
* The resource has been introduced in the given [system version](../index.md#def-system-version).
|
1696
|
+
* This implies that the resource is only available if the system instance is of at least that system version.
|
1697
|
+
*/
|
1698
|
+
minSystemVersion?: string;
|
1586
1699
|
/**
|
1587
1700
|
* Optional list of related EntityType Resources.
|
1588
1701
|
*
|
@@ -1676,7 +1789,7 @@ export interface CapabilityDefinition {
|
|
1676
1789
|
*/
|
1677
1790
|
export interface DataProduct {
|
1678
1791
|
/**
|
1679
|
-
* The
|
1792
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
1680
1793
|
*
|
1681
1794
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
1682
1795
|
*/
|
@@ -1745,7 +1858,7 @@ export interface DataProduct {
|
|
1745
1858
|
* It SHOULD be changed if the ORD information or referenced resource definitions changed.
|
1746
1859
|
* It SHOULD express minor and patch changes that don't lead to incompatible changes.
|
1747
1860
|
*
|
1748
|
-
* When the `version` major version changes, the [ORD ID](#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
1861
|
+
* When the `version` major version changes, the [ORD ID](../index.md#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
1749
1862
|
* In case that a resource definition file also contains a version number (e.g. [OpenAPI `info`.`version`](https://swagger.io/specification/#info-object)), it MUST be equal with the resource `version` to avoid inconsistencies.
|
1750
1863
|
*
|
1751
1864
|
* If the resource has been extended by the user, the change MUST be indicated via `lastUpdate`.
|
@@ -1793,6 +1906,11 @@ export interface DataProduct {
|
|
1793
1906
|
*
|
1794
1907
|
*/
|
1795
1908
|
disabled?: boolean;
|
1909
|
+
/**
|
1910
|
+
* The resource has been introduced in the given [system version](../index.md#def-system-version).
|
1911
|
+
* This implies that the resource is only available if the system instance is of at least that system version.
|
1912
|
+
*/
|
1913
|
+
minSystemVersion?: string;
|
1796
1914
|
/**
|
1797
1915
|
* Lifecycle status of the Data Product as a whole.
|
1798
1916
|
*
|
@@ -1954,7 +2072,7 @@ export interface DataProduct {
|
|
1954
2072
|
*/
|
1955
2073
|
export interface DataProductInputPort {
|
1956
2074
|
/**
|
1957
|
-
* The
|
2075
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
1958
2076
|
*
|
1959
2077
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
1960
2078
|
*/
|
@@ -1970,7 +2088,7 @@ export interface DataProductInputPort {
|
|
1970
2088
|
*/
|
1971
2089
|
export interface DataProductOutputPort {
|
1972
2090
|
/**
|
1973
|
-
* The
|
2091
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
1974
2092
|
*
|
1975
2093
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
1976
2094
|
*/
|
@@ -2021,7 +2139,7 @@ export interface DataProductLink {
|
|
2021
2139
|
*/
|
2022
2140
|
export interface IntegrationDependency {
|
2023
2141
|
/**
|
2024
|
-
* The
|
2142
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
2025
2143
|
*
|
2026
2144
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
2027
2145
|
*/
|
@@ -2090,7 +2208,7 @@ export interface IntegrationDependency {
|
|
2090
2208
|
* It SHOULD be changed if the ORD information or referenced resource definitions changed.
|
2091
2209
|
* It SHOULD express minor and patch changes that don't lead to incompatible changes.
|
2092
2210
|
*
|
2093
|
-
* When the `version` major version changes, the [ORD ID](#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
2211
|
+
* When the `version` major version changes, the [ORD ID](../index.md#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
2094
2212
|
* In case that a resource definition file also contains a version number (e.g. [OpenAPI `info`.`version`](https://swagger.io/specification/#info-object)), it MUST be equal with the resource `version` to avoid inconsistencies.
|
2095
2213
|
*
|
2096
2214
|
* If the resource has been extended by the user, the change MUST be indicated via `lastUpdate`.
|
@@ -2217,7 +2335,7 @@ export interface Aspect {
|
|
2217
2335
|
*/
|
2218
2336
|
export interface APIResourceIntegrationAspect {
|
2219
2337
|
/**
|
2220
|
-
* The
|
2338
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
2221
2339
|
*
|
2222
2340
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
2223
2341
|
*/
|
@@ -2233,7 +2351,7 @@ export interface APIResourceIntegrationAspect {
|
|
2233
2351
|
*/
|
2234
2352
|
export interface EventResourceIntegrationAspect {
|
2235
2353
|
/**
|
2236
|
-
* The
|
2354
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
2237
2355
|
*
|
2238
2356
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
2239
2357
|
*/
|
@@ -2288,7 +2406,7 @@ export interface EventResourceIntegrationAspectSubset {
|
|
2288
2406
|
*/
|
2289
2407
|
export interface Vendor {
|
2290
2408
|
/**
|
2291
|
-
* The
|
2409
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
2292
2410
|
*
|
2293
2411
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
2294
2412
|
*/
|
@@ -2331,7 +2449,7 @@ export interface Vendor {
|
|
2331
2449
|
*/
|
2332
2450
|
export interface Product {
|
2333
2451
|
/**
|
2334
|
-
* The
|
2452
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
2335
2453
|
*
|
2336
2454
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
2337
2455
|
*/
|
@@ -2407,7 +2525,7 @@ export interface Product {
|
|
2407
2525
|
*/
|
2408
2526
|
export interface Package {
|
2409
2527
|
/**
|
2410
|
-
* The
|
2528
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
2411
2529
|
*
|
2412
2530
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
2413
2531
|
*/
|
@@ -2446,7 +2564,7 @@ export interface Package {
|
|
2446
2564
|
* It SHOULD be changed if the ORD information or referenced resource definitions changed.
|
2447
2565
|
* It SHOULD express minor and patch changes that don't lead to incompatible changes.
|
2448
2566
|
*
|
2449
|
-
* When the `version` major version changes, the [ORD ID](#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
2567
|
+
* When the `version` major version changes, the [ORD ID](../index.md#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
2450
2568
|
* In case that a resource definition file also contains a version number (e.g. [OpenAPI `info`.`version`](https://swagger.io/specification/#info-object)), it MUST be equal with the resource `version` to avoid inconsistencies.
|
2451
2569
|
*
|
2452
2570
|
* If the resource has been extended by the user, the change MUST be indicated via `lastUpdate`.
|
@@ -2605,7 +2723,7 @@ export interface PackageLink {
|
|
2605
2723
|
*/
|
2606
2724
|
export interface ConsumptionBundle {
|
2607
2725
|
/**
|
2608
|
-
* The
|
2726
|
+
* The ORD ID is a stable, globally unique ID for ORD resources or taxonomy.
|
2609
2727
|
*
|
2610
2728
|
* It MUST be a valid [ORD ID](../index.md#ord-id) of the appropriate ORD type.
|
2611
2729
|
*/
|
@@ -2654,7 +2772,7 @@ export interface ConsumptionBundle {
|
|
2654
2772
|
* It SHOULD be changed if the ORD information or referenced resource definitions changed.
|
2655
2773
|
* It SHOULD express minor and patch changes that don't lead to incompatible changes.
|
2656
2774
|
*
|
2657
|
-
* When the `version` major version changes, the [ORD ID](#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
2775
|
+
* When the `version` major version changes, the [ORD ID](../index.md#ord-id) `<majorVersion>` fragment MUST be updated to be identical.
|
2658
2776
|
* In case that a resource definition file also contains a version number (e.g. [OpenAPI `info`.`version`](https://swagger.io/specification/#info-object)), it MUST be equal with the resource `version` to avoid inconsistencies.
|
2659
2777
|
*
|
2660
2778
|
* If the resource has been extended by the user, the change MUST be indicated via `lastUpdate`.
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"$schema": "http://json.schemastore.org/package",
|
3
3
|
"name": "@open-resource-discovery/specification",
|
4
|
-
"version": "1.
|
4
|
+
"version": "1.10.0",
|
5
5
|
"description": "Open Resource Discovery (ORD) Specification",
|
6
6
|
"author": "SAP SE",
|
7
7
|
"license": "Apache-2.0",
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"@docusaurus/core": "3.7.0",
|
30
30
|
"@docusaurus/preset-classic": "3.7.0",
|
31
31
|
"@docusaurus/theme-mermaid": "3.7.0",
|
32
|
-
"@easyops-cn/docusaurus-search-local": "0.
|
32
|
+
"@easyops-cn/docusaurus-search-local": "0.49.1",
|
33
33
|
"@mdx-js/react": "3.1.0",
|
34
34
|
"clsx": "2.1.1",
|
35
35
|
"prism-react-renderer": "2.4.1",
|