From b3ff872f7b482bf1cd81de3bc554ed699be7a298 Mon Sep 17 00:00:00 2001 From: sebbader-sap <107036549+sebbader-sap@users.noreply.github.com> Date: Fri, 22 Mar 2024 13:00:00 +0100 Subject: [PATCH] Fix References in JSON Schema Files (#256) This is a class 1 change, not affecting conformity, but only fixing broken links. * fix links in json schema files * fix also the json schema references also in the release 2024-1 * add missing contract-schema adjustments * add missing contract-schema adjustments * fix links in json schema files --- catalog/message/schema/catalog-error-schema.json | 2 +- .../message/schema/catalog-request-message-schema.json | 2 +- catalog/message/schema/catalog-schema.json | 8 ++++---- .../message/schema/dataset-request-message-schema.json | 2 +- catalog/message/schema/dataset-schema.json | 6 +++--- common/schema/version-schema.json | 2 +- .../message/schema/contract-agreement-message-schema.json | 4 ++-- .../contract-agreement-verification-message-schema.json | 2 +- .../message/schema/contract-negotiation-error-schema.json | 2 +- .../schema/contract-negotiation-event-message-schema.json | 2 +- .../message/schema/contract-negotiation-schema.json | 2 +- .../contract-negotiation-termination-message-schema.json | 2 +- .../message/schema/contract-offer-message-schema.json | 4 ++-- .../message/schema/contract-request-message-schema.json | 4 ++-- negotiation/message/schema/contract-schema.json | 2 +- .../catalog/message/schema/catalog-error-schema.json | 2 +- .../message/schema/catalog-request-message-schema.json | 2 +- .../2024-1/catalog/message/schema/catalog-schema.json | 8 ++++---- .../message/schema/dataset-request-message-schema.json | 2 +- .../2024-1/catalog/message/schema/dataset-schema.json | 6 +++--- releases/2024-1/common/schema/version-schema.json | 2 +- .../message/schema/contract-agreement-message-schema.json | 4 ++-- .../contract-agreement-verification-message-schema.json | 2 +- .../message/schema/contract-negotiation-error-schema.json | 2 +- .../schema/contract-negotiation-event-message-schema.json | 2 +- .../message/schema/contract-negotiation-schema.json | 2 +- .../contract-negotiation-termination-message-schema.json | 2 +- .../message/schema/contract-offer-message-schema.json | 4 ++-- .../message/schema/contract-request-message-schema.json | 4 ++-- .../negotiation/message/schema/contract-schema.json | 2 +- .../schema/transfer-completion-message-schema.json | 2 +- .../transfer/message/schema/transfer-error-schema.json | 2 +- .../transfer/message/schema/transfer-process-schema.json | 2 +- .../message/schema/transfer-request-message-schema.json | 2 +- .../message/schema/transfer-start-message-schema.json | 2 +- .../schema/transfer-suspension-message-schema.json | 2 +- .../schema/transfer-termination-message-schema.json | 2 +- .../schema/transfer-completion-message-schema.json | 2 +- transfer/message/schema/transfer-error-schema.json | 2 +- transfer/message/schema/transfer-process-schema.json | 2 +- .../message/schema/transfer-request-message-schema.json | 2 +- .../message/schema/transfer-start-message-schema.json | 2 +- .../schema/transfer-suspension-message-schema.json | 2 +- .../schema/transfer-termination-message-schema.json | 2 +- 44 files changed, 60 insertions(+), 60 deletions(-) diff --git a/catalog/message/schema/catalog-error-schema.json b/catalog/message/schema/catalog-error-schema.json index 2861836..b47409b 100644 --- a/catalog/message/schema/catalog-error-schema.json +++ b/catalog/message/schema/catalog-error-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/CatalogError" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/CatalogErrorSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/catalog-error-schema.json", "definitions": { "CatalogError": { "type": "object", diff --git a/catalog/message/schema/catalog-request-message-schema.json b/catalog/message/schema/catalog-request-message-schema.json index 8139609..cb17b9a 100644 --- a/catalog/message/schema/catalog-request-message-schema.json +++ b/catalog/message/schema/catalog-request-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/CatalogRequestMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/CatalogRequestMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/catalog-request-message-schema.json", "definitions": { "CatalogRequestMessage": { "type": "object", diff --git a/catalog/message/schema/catalog-schema.json b/catalog/message/schema/catalog-schema.json index f726f6b..69a8b68 100644 --- a/catalog/message/schema/catalog-schema.json +++ b/catalog/message/schema/catalog-schema.json @@ -7,13 +7,13 @@ "$ref": "#/definitions/Catalog" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/CatalogSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/catalog-schema.json", "definitions": { "Catalog": { "type": "object", "allOf": [ { - "$ref": "https://w3id.org/dspace/schemas/2024/1/dataset-schema.json#/definitions/Dataset" + "$ref": "https://w3id.org/dspace/2024/1/catalog/dataset-schema.json#/definitions/Dataset" }, { "properties": { @@ -28,14 +28,14 @@ "dcat:dataset": { "type": "array", "items": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/dataset-schema.json#/definitions/Dataset" + "$ref": "https://w3id.org/dspace/2024/1/catalog/dataset-schema.json#/definitions/Dataset" }, "minItems": 1 }, "dcat:service": { "type": "array", "items": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/dataset-schema.json#/definitions/DataService" + "$ref": "https://w3id.org/dspace/2024/1/catalog/dataset-schema.json#/definitions/DataService" }, "minItems": 1 }, diff --git a/catalog/message/schema/dataset-request-message-schema.json b/catalog/message/schema/dataset-request-message-schema.json index 2c0026c..c05c4e9 100644 --- a/catalog/message/schema/dataset-request-message-schema.json +++ b/catalog/message/schema/dataset-request-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/DatasetRequestMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/DatasetRequestMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/dataset-request-message-schema.json", "definitions": { "DatasetRequestMessage": { "type": "object", diff --git a/catalog/message/schema/dataset-schema.json b/catalog/message/schema/dataset-schema.json index 1b29d0e..a919c22 100644 --- a/catalog/message/schema/dataset-schema.json +++ b/catalog/message/schema/dataset-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/Dataset" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/DatasetSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/dataset-schema.json", "definitions": { "Dataset": { "type": "object", @@ -20,7 +20,7 @@ "odrl:hasPolicy": { "type": "array", "items": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/Offer" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/Offer" }, "minItems": 1 }, @@ -101,7 +101,7 @@ "odrl:hasPolicy": { "type": "array", "items": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/Offer" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/Offer" }, "minItems": 1 }, diff --git a/common/schema/version-schema.json b/common/schema/version-schema.json index 0714927..528a764 100644 --- a/common/schema/version-schema.json +++ b/common/schema/version-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/Version" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/VersionSchema", + "$id": "https://w3id.org/dspace/2024/1/common/version-schema.json", "definitions": { "Version": { "type": "object", diff --git a/negotiation/message/schema/contract-agreement-message-schema.json b/negotiation/message/schema/contract-agreement-message-schema.json index 07176b5..a5a2369 100644 --- a/negotiation/message/schema/contract-agreement-message-schema.json +++ b/negotiation/message/schema/contract-agreement-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractAgreementMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractAgreementMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-agreement-message-schema.json", "definitions": { "ContractAgreementMessage": { "type": "object", @@ -27,7 +27,7 @@ "type": "string" }, "dspace:agreement": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/Agreement" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/Agreement" }, "dspace:callbackAddress": { "type" : "string" diff --git a/negotiation/message/schema/contract-agreement-verification-message-schema.json b/negotiation/message/schema/contract-agreement-verification-message-schema.json index 8c3df70..dbf27cd 100644 --- a/negotiation/message/schema/contract-agreement-verification-message-schema.json +++ b/negotiation/message/schema/contract-agreement-verification-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractAgreementVerificationMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractAgreementVerificationMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-agreement-verification-message-schema.json", "definitions": { "ContractAgreementVerificationMessage": { "type": "object", diff --git a/negotiation/message/schema/contract-negotiation-error-schema.json b/negotiation/message/schema/contract-negotiation-error-schema.json index 542ff1e..34d115a 100644 --- a/negotiation/message/schema/contract-negotiation-error-schema.json +++ b/negotiation/message/schema/contract-negotiation-error-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractNegotiationError" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractNegotiationErrorSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-negotiation-error-schema.json", "definitions": { "ContractNegotiationError": { "type": "object", diff --git a/negotiation/message/schema/contract-negotiation-event-message-schema.json b/negotiation/message/schema/contract-negotiation-event-message-schema.json index 82ec44e..56ec3ab 100644 --- a/negotiation/message/schema/contract-negotiation-event-message-schema.json +++ b/negotiation/message/schema/contract-negotiation-event-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractNegotiationEventMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractNegotiationEventMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-negotiation-event-message-schema.json", "definitions": { "ContractNegotiationEventMessage": { "type": "object", diff --git a/negotiation/message/schema/contract-negotiation-schema.json b/negotiation/message/schema/contract-negotiation-schema.json index 7d596bd..47f4c63 100644 --- a/negotiation/message/schema/contract-negotiation-schema.json +++ b/negotiation/message/schema/contract-negotiation-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractNegotiation" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractNegotiationSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-negotiation-schema.json", "definitions": { "ContractNegotiation": { "type": "object", diff --git a/negotiation/message/schema/contract-negotiation-termination-message-schema.json b/negotiation/message/schema/contract-negotiation-termination-message-schema.json index 67c7328..816ea27 100644 --- a/negotiation/message/schema/contract-negotiation-termination-message-schema.json +++ b/negotiation/message/schema/contract-negotiation-termination-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractNegotiationTerminationMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractNegotiationTerminationMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-negotiation-termination-message-schema.json", "definitions": { "ContractNegotiationTerminationMessage": { "type": "object", diff --git a/negotiation/message/schema/contract-offer-message-schema.json b/negotiation/message/schema/contract-offer-message-schema.json index 6de3f74..0d48e56 100644 --- a/negotiation/message/schema/contract-offer-message-schema.json +++ b/negotiation/message/schema/contract-offer-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractOfferMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractOfferMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-offer-message-schema.json", "definitions": { "ContractOfferMessage": { "type": "object", @@ -27,7 +27,7 @@ "type": "string" }, "dspace:offer": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/MessageOffer" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/MessageOffer" }, "dspace:callbackAddress": { "type" : "string" diff --git a/negotiation/message/schema/contract-request-message-schema.json b/negotiation/message/schema/contract-request-message-schema.json index ff9bc1a..202f9af 100644 --- a/negotiation/message/schema/contract-request-message-schema.json +++ b/negotiation/message/schema/contract-request-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractRequestMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractRequestMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-request-message-schema.json", "definitions": { "ContractRequestMessage": { "type": "object", @@ -27,7 +27,7 @@ "type": "string" }, "dspace:offer": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/MessageOffer" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/MessageOffer" }, "dspace:callbackAddress": { "type" : "string" diff --git a/negotiation/message/schema/contract-schema.json b/negotiation/message/schema/contract-schema.json index a489418..3490c8c 100644 --- a/negotiation/message/schema/contract-schema.json +++ b/negotiation/message/schema/contract-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/Policy" } ], - "$id": "https://w3id.org/dspace/schemas/0/8/PolicySchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json", "definitions": { "Policy": { "oneOf": [ diff --git a/releases/2024-1/catalog/message/schema/catalog-error-schema.json b/releases/2024-1/catalog/message/schema/catalog-error-schema.json index 2861836..b47409b 100644 --- a/releases/2024-1/catalog/message/schema/catalog-error-schema.json +++ b/releases/2024-1/catalog/message/schema/catalog-error-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/CatalogError" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/CatalogErrorSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/catalog-error-schema.json", "definitions": { "CatalogError": { "type": "object", diff --git a/releases/2024-1/catalog/message/schema/catalog-request-message-schema.json b/releases/2024-1/catalog/message/schema/catalog-request-message-schema.json index 8139609..cb17b9a 100644 --- a/releases/2024-1/catalog/message/schema/catalog-request-message-schema.json +++ b/releases/2024-1/catalog/message/schema/catalog-request-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/CatalogRequestMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/CatalogRequestMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/catalog-request-message-schema.json", "definitions": { "CatalogRequestMessage": { "type": "object", diff --git a/releases/2024-1/catalog/message/schema/catalog-schema.json b/releases/2024-1/catalog/message/schema/catalog-schema.json index f726f6b..69a8b68 100644 --- a/releases/2024-1/catalog/message/schema/catalog-schema.json +++ b/releases/2024-1/catalog/message/schema/catalog-schema.json @@ -7,13 +7,13 @@ "$ref": "#/definitions/Catalog" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/CatalogSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/catalog-schema.json", "definitions": { "Catalog": { "type": "object", "allOf": [ { - "$ref": "https://w3id.org/dspace/schemas/2024/1/dataset-schema.json#/definitions/Dataset" + "$ref": "https://w3id.org/dspace/2024/1/catalog/dataset-schema.json#/definitions/Dataset" }, { "properties": { @@ -28,14 +28,14 @@ "dcat:dataset": { "type": "array", "items": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/dataset-schema.json#/definitions/Dataset" + "$ref": "https://w3id.org/dspace/2024/1/catalog/dataset-schema.json#/definitions/Dataset" }, "minItems": 1 }, "dcat:service": { "type": "array", "items": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/dataset-schema.json#/definitions/DataService" + "$ref": "https://w3id.org/dspace/2024/1/catalog/dataset-schema.json#/definitions/DataService" }, "minItems": 1 }, diff --git a/releases/2024-1/catalog/message/schema/dataset-request-message-schema.json b/releases/2024-1/catalog/message/schema/dataset-request-message-schema.json index 2c0026c..c05c4e9 100644 --- a/releases/2024-1/catalog/message/schema/dataset-request-message-schema.json +++ b/releases/2024-1/catalog/message/schema/dataset-request-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/DatasetRequestMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/DatasetRequestMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/dataset-request-message-schema.json", "definitions": { "DatasetRequestMessage": { "type": "object", diff --git a/releases/2024-1/catalog/message/schema/dataset-schema.json b/releases/2024-1/catalog/message/schema/dataset-schema.json index 1b29d0e..a919c22 100644 --- a/releases/2024-1/catalog/message/schema/dataset-schema.json +++ b/releases/2024-1/catalog/message/schema/dataset-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/Dataset" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/DatasetSchema", + "$id": "https://w3id.org/dspace/2024/1/catalog/dataset-schema.json", "definitions": { "Dataset": { "type": "object", @@ -20,7 +20,7 @@ "odrl:hasPolicy": { "type": "array", "items": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/Offer" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/Offer" }, "minItems": 1 }, @@ -101,7 +101,7 @@ "odrl:hasPolicy": { "type": "array", "items": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/Offer" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/Offer" }, "minItems": 1 }, diff --git a/releases/2024-1/common/schema/version-schema.json b/releases/2024-1/common/schema/version-schema.json index 0714927..528a764 100644 --- a/releases/2024-1/common/schema/version-schema.json +++ b/releases/2024-1/common/schema/version-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/Version" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/VersionSchema", + "$id": "https://w3id.org/dspace/2024/1/common/version-schema.json", "definitions": { "Version": { "type": "object", diff --git a/releases/2024-1/negotiation/message/schema/contract-agreement-message-schema.json b/releases/2024-1/negotiation/message/schema/contract-agreement-message-schema.json index 07176b5..a5a2369 100644 --- a/releases/2024-1/negotiation/message/schema/contract-agreement-message-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-agreement-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractAgreementMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractAgreementMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-agreement-message-schema.json", "definitions": { "ContractAgreementMessage": { "type": "object", @@ -27,7 +27,7 @@ "type": "string" }, "dspace:agreement": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/Agreement" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/Agreement" }, "dspace:callbackAddress": { "type" : "string" diff --git a/releases/2024-1/negotiation/message/schema/contract-agreement-verification-message-schema.json b/releases/2024-1/negotiation/message/schema/contract-agreement-verification-message-schema.json index 8c3df70..dbf27cd 100644 --- a/releases/2024-1/negotiation/message/schema/contract-agreement-verification-message-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-agreement-verification-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractAgreementVerificationMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractAgreementVerificationMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-agreement-verification-message-schema.json", "definitions": { "ContractAgreementVerificationMessage": { "type": "object", diff --git a/releases/2024-1/negotiation/message/schema/contract-negotiation-error-schema.json b/releases/2024-1/negotiation/message/schema/contract-negotiation-error-schema.json index 542ff1e..34d115a 100644 --- a/releases/2024-1/negotiation/message/schema/contract-negotiation-error-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-negotiation-error-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractNegotiationError" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractNegotiationErrorSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-negotiation-error-schema.json", "definitions": { "ContractNegotiationError": { "type": "object", diff --git a/releases/2024-1/negotiation/message/schema/contract-negotiation-event-message-schema.json b/releases/2024-1/negotiation/message/schema/contract-negotiation-event-message-schema.json index 82ec44e..56ec3ab 100644 --- a/releases/2024-1/negotiation/message/schema/contract-negotiation-event-message-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-negotiation-event-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractNegotiationEventMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractNegotiationEventMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-negotiation-event-message-schema.json", "definitions": { "ContractNegotiationEventMessage": { "type": "object", diff --git a/releases/2024-1/negotiation/message/schema/contract-negotiation-schema.json b/releases/2024-1/negotiation/message/schema/contract-negotiation-schema.json index 7d596bd..47f4c63 100644 --- a/releases/2024-1/negotiation/message/schema/contract-negotiation-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-negotiation-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractNegotiation" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractNegotiationSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-negotiation-schema.json", "definitions": { "ContractNegotiation": { "type": "object", diff --git a/releases/2024-1/negotiation/message/schema/contract-negotiation-termination-message-schema.json b/releases/2024-1/negotiation/message/schema/contract-negotiation-termination-message-schema.json index 67c7328..816ea27 100644 --- a/releases/2024-1/negotiation/message/schema/contract-negotiation-termination-message-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-negotiation-termination-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractNegotiationTerminationMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractNegotiationTerminationMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-negotiation-termination-message-schema.json", "definitions": { "ContractNegotiationTerminationMessage": { "type": "object", diff --git a/releases/2024-1/negotiation/message/schema/contract-offer-message-schema.json b/releases/2024-1/negotiation/message/schema/contract-offer-message-schema.json index 6de3f74..0d48e56 100644 --- a/releases/2024-1/negotiation/message/schema/contract-offer-message-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-offer-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractOfferMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractOfferMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-offer-message-schema.json", "definitions": { "ContractOfferMessage": { "type": "object", @@ -27,7 +27,7 @@ "type": "string" }, "dspace:offer": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/MessageOffer" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/MessageOffer" }, "dspace:callbackAddress": { "type" : "string" diff --git a/releases/2024-1/negotiation/message/schema/contract-request-message-schema.json b/releases/2024-1/negotiation/message/schema/contract-request-message-schema.json index ff9bc1a..202f9af 100644 --- a/releases/2024-1/negotiation/message/schema/contract-request-message-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-request-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/ContractRequestMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/ContractRequestMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-request-message-schema.json", "definitions": { "ContractRequestMessage": { "type": "object", @@ -27,7 +27,7 @@ "type": "string" }, "dspace:offer": { - "$ref": "https://w3id.org/dspace/schemas/2024/1/contract-schema.json#/definitions/MessageOffer" + "$ref": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json#/definitions/MessageOffer" }, "dspace:callbackAddress": { "type" : "string" diff --git a/releases/2024-1/negotiation/message/schema/contract-schema.json b/releases/2024-1/negotiation/message/schema/contract-schema.json index a489418..3490c8c 100644 --- a/releases/2024-1/negotiation/message/schema/contract-schema.json +++ b/releases/2024-1/negotiation/message/schema/contract-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/Policy" } ], - "$id": "https://w3id.org/dspace/schemas/0/8/PolicySchema", + "$id": "https://w3id.org/dspace/2024/1/negotiation/contract-schema.json", "definitions": { "Policy": { "oneOf": [ diff --git a/releases/2024-1/transfer/message/schema/transfer-completion-message-schema.json b/releases/2024-1/transfer/message/schema/transfer-completion-message-schema.json index 883773d..d7d00ee 100644 --- a/releases/2024-1/transfer/message/schema/transfer-completion-message-schema.json +++ b/releases/2024-1/transfer/message/schema/transfer-completion-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferCompletionMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferCompletionMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-completion-message-schema.json", "definitions": { "TransferCompletionMessage": { "type": "object", diff --git a/releases/2024-1/transfer/message/schema/transfer-error-schema.json b/releases/2024-1/transfer/message/schema/transfer-error-schema.json index 66cd716..9945896 100644 --- a/releases/2024-1/transfer/message/schema/transfer-error-schema.json +++ b/releases/2024-1/transfer/message/schema/transfer-error-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferError" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferErrorSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-error-schema.json", "definitions": { "TransferError": { "type": "object", diff --git a/releases/2024-1/transfer/message/schema/transfer-process-schema.json b/releases/2024-1/transfer/message/schema/transfer-process-schema.json index 2de7e8a..3fc6901 100644 --- a/releases/2024-1/transfer/message/schema/transfer-process-schema.json +++ b/releases/2024-1/transfer/message/schema/transfer-process-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferProcess" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferProcessSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-process-schema.json", "definitions": { "TransferProcess": { "type": "object", diff --git a/releases/2024-1/transfer/message/schema/transfer-request-message-schema.json b/releases/2024-1/transfer/message/schema/transfer-request-message-schema.json index e71fb28..a357991 100644 --- a/releases/2024-1/transfer/message/schema/transfer-request-message-schema.json +++ b/releases/2024-1/transfer/message/schema/transfer-request-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferRequestMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferRequestMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-request-message-schema.json", "definitions": { "TransferRequestMessage": { "type": "object", diff --git a/releases/2024-1/transfer/message/schema/transfer-start-message-schema.json b/releases/2024-1/transfer/message/schema/transfer-start-message-schema.json index 9047bda..3db706c 100644 --- a/releases/2024-1/transfer/message/schema/transfer-start-message-schema.json +++ b/releases/2024-1/transfer/message/schema/transfer-start-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferStartMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferStartMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-start-message-schema.json", "definitions": { "TransferStartMessage": { "type": "object", diff --git a/releases/2024-1/transfer/message/schema/transfer-suspension-message-schema.json b/releases/2024-1/transfer/message/schema/transfer-suspension-message-schema.json index 2b566ed..4226590 100644 --- a/releases/2024-1/transfer/message/schema/transfer-suspension-message-schema.json +++ b/releases/2024-1/transfer/message/schema/transfer-suspension-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferSuspensionMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferSuspensionMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-suspension-message-schema.json", "definitions": { "TransferSuspensionMessage": { "type": "object", diff --git a/releases/2024-1/transfer/message/schema/transfer-termination-message-schema.json b/releases/2024-1/transfer/message/schema/transfer-termination-message-schema.json index 7abd6da..85b65fe 100644 --- a/releases/2024-1/transfer/message/schema/transfer-termination-message-schema.json +++ b/releases/2024-1/transfer/message/schema/transfer-termination-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferTerminationMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferTerminationMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-termination-message-schema.json", "definitions": { "TransferTerminationMessage": { "type": "object", diff --git a/transfer/message/schema/transfer-completion-message-schema.json b/transfer/message/schema/transfer-completion-message-schema.json index 883773d..d7d00ee 100644 --- a/transfer/message/schema/transfer-completion-message-schema.json +++ b/transfer/message/schema/transfer-completion-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferCompletionMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferCompletionMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-completion-message-schema.json", "definitions": { "TransferCompletionMessage": { "type": "object", diff --git a/transfer/message/schema/transfer-error-schema.json b/transfer/message/schema/transfer-error-schema.json index 66cd716..9945896 100644 --- a/transfer/message/schema/transfer-error-schema.json +++ b/transfer/message/schema/transfer-error-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferError" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferErrorSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-error-schema.json", "definitions": { "TransferError": { "type": "object", diff --git a/transfer/message/schema/transfer-process-schema.json b/transfer/message/schema/transfer-process-schema.json index 2de7e8a..3fc6901 100644 --- a/transfer/message/schema/transfer-process-schema.json +++ b/transfer/message/schema/transfer-process-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferProcess" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferProcessSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-process-schema.json", "definitions": { "TransferProcess": { "type": "object", diff --git a/transfer/message/schema/transfer-request-message-schema.json b/transfer/message/schema/transfer-request-message-schema.json index e71fb28..a357991 100644 --- a/transfer/message/schema/transfer-request-message-schema.json +++ b/transfer/message/schema/transfer-request-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferRequestMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferRequestMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-request-message-schema.json", "definitions": { "TransferRequestMessage": { "type": "object", diff --git a/transfer/message/schema/transfer-start-message-schema.json b/transfer/message/schema/transfer-start-message-schema.json index 9047bda..3db706c 100644 --- a/transfer/message/schema/transfer-start-message-schema.json +++ b/transfer/message/schema/transfer-start-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferStartMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferStartMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-start-message-schema.json", "definitions": { "TransferStartMessage": { "type": "object", diff --git a/transfer/message/schema/transfer-suspension-message-schema.json b/transfer/message/schema/transfer-suspension-message-schema.json index 2b566ed..4226590 100644 --- a/transfer/message/schema/transfer-suspension-message-schema.json +++ b/transfer/message/schema/transfer-suspension-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferSuspensionMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferSuspensionMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-suspension-message-schema.json", "definitions": { "TransferSuspensionMessage": { "type": "object", diff --git a/transfer/message/schema/transfer-termination-message-schema.json b/transfer/message/schema/transfer-termination-message-schema.json index 7abd6da..85b65fe 100644 --- a/transfer/message/schema/transfer-termination-message-schema.json +++ b/transfer/message/schema/transfer-termination-message-schema.json @@ -7,7 +7,7 @@ "$ref": "#/definitions/TransferTerminationMessage" } ], - "$id": "https://w3id.org/dspace/schemas/2024/1/TransferTerminationMessageSchema", + "$id": "https://w3id.org/dspace/2024/1/transfer/transfer-termination-message-schema.json", "definitions": { "TransferTerminationMessage": { "type": "object",