From 340c2814b01071a67f1ff6fd9105d76f2fa58899 Mon Sep 17 00:00:00 2001 From: simonLouvet Date: Thu, 25 Jan 2024 16:34:32 +0100 Subject: [PATCH] upgrade context.json to add tech ontology object property and owner (requiere to prototype) (#110) * fix context & changelog bottom links * add object properties needed by prototype * add object properties needed by prototype * add object properties needed by prototype * add object properties needed by prototype * add object properties needed by prototype * add object properties needed by prototype --------- Co-authored-by: simon louvet --- .gitignore | 3 ++- CHANGELOG.md | 15 ++++++++++++--- context.json | 15 ++++++++++++++- 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 53d21fb..60ef308 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -src/catalog-v001.xml \ No newline at end of file +src/catalog-v001.xml +*.orig \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d9ad201..7ad40e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [1.11.1] - 2024-01-12 +### Added +- upgrade context.json to add tech ontology object property and owner (required to prototype) + - dfc-t:represent + - dfc-t:hasPivot + - dfc-t:hostedBy + - dfc:owner ## [1.11.0] - 2024-01-11 @@ -42,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - inverse property: hasLabellingCharacteristic inverseOf labellingCharacteristicOf ### Changed + - PhysicalProduct: subClassOf (consumedBy only AsRealisedProductionFlow) -> subClassOf (consumedBy only AsRealisedConsumptionFlow) - Address: subClassOf addressOf only Person and subClassOf addressOf only PhysicalPlace -> subClassOf addressOf only (Person or PhysicalPlace) - Agent: subClassOf owns only PhysicalProduct -> subClassOf owns only (PhysicalProduct or Brand) @@ -275,9 +283,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Brand as a Facet. -[unreleased]: https://github.com/datafoodconsortium/ontology/compare/v1.11.0...master -[1.11.0]: https://github.com/datafoodconsortium/ontology/compare/v1.10.0...v1.11.0 -[1.10.0]: https://github.com/datafoodconsortium/ontology/compare/v1.9.0...v1.10.0 +[unreleased]: https://github.com/datafoodconsortium/ontology/compare/v1.11.1...master +[1.11.1]: https://github.com/datafoodconsortium/ontology/compare/v1.10.1...v1.11.1 +[1.9.2]: https://github.com/datafoodconsortium/ontology/compare/v1.9.1...v1.9.2 +[1.9.1]: https://github.com/datafoodconsortium/ontology/compare/v1.9.0...v1.9.1 [1.9.0]: https://github.com/datafoodconsortium/ontology/compare/v1.8.0...v1.9.0 [1.8.0]: https://github.com/datafoodconsortium/ontology/compare/v1.7.3...v1.8.0 [1.7.3]: https://github.com/datafoodconsortium/ontology/compare/v1.7.2...v1.7.3 diff --git a/context.json b/context.json index 164032d..c077d08 100644 --- a/context.json +++ b/context.json @@ -415,6 +415,19 @@ }, "dfc-b:uses": { "@type": "@id" + }, + + "dfc-t:represent": { + "@type": "@id" + }, + "dfc-t:hasPivot": { + "@type": "@id" + }, + "dfc-t:hostedBy": { + "@type": "@id" + }, + "dfc:owner": { + "@type": "@id" } } -} \ No newline at end of file +}