From 3e394550f65c888fe9b4f464950c39011fdbae2e Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Wed, 9 Jul 2025 13:41:46 +0200 Subject: [PATCH 1/2] Add relation type for validation --- CHANGELOG.md | 2 ++ README.md | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15c1519..24e3da3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Relation type `validation-report` + ### Changed ### Deprecated diff --git a/README.md b/README.md index 4da1e36..b5ee35c 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,7 @@ The following types should be used as applicable `rel` types in the | processing-expression | A processing chain (or script) that describes how the data has been processed. | | processing-execution | URL to any resource representing the processing execution (e.g. OGC Process API). | | processing-software | URL to any resource that identifies the software and versions used for processing the data, e.g. a `Pipfile.lock` (Python) or `package-lock.json` (NodeJS). | +| processing-validation | URL to any kind of validation that has been applied after processing, e.g. a validation report or a script used for validation. | ## Contributing From 856e80d6fe7fccd20ed2d1c577776b5d698544a7 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 10 Jul 2025 10:58:07 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Emmanuel Mathot --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24e3da3..870c9e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Relation type `validation-report` +- Relation type `processing-validation` ### Changed