From 503f5fe950ef3ea49ac0f56e8b7b9896af406ec4 Mon Sep 17 00:00:00 2001 From: Jason Fox Date: Tue, 15 Aug 2023 09:35:31 +0200 Subject: [PATCH] Updating to core context 1.6 --- README.ja.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.ja.md b/README.ja.md index 307711a..7899f0e 100644 --- a/README.ja.md +++ b/README.ja.md @@ -558,7 +558,7 @@ Creating a NGSI-LD @context file for normalized interactions datamodels.context- - 属性 (例: `address`) と 列挙値 (例: `barn`) のリスト 事実上、この NGSI-LD `@context` は、NGSI-LD コア・コンテキスト -[https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld](https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld) +[https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6.jsonld](https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6.jsonld) のコピー と組み合わせて、以下を機械的に定義します: コンピュータが `type=Building` のエンティティに遭遇した場合、これは実際には @@ -608,7 +608,7 @@ NGSI-LD の `@context` はすべての NGSI-LD CRUD 操作に使用され、デ }, "@context": [ "https://example.com/data-models.context-ngsild.jsonld", - "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld" + "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6.jsonld" ] } ``` diff --git a/README.md b/README.md index 2ac3e9e..f35ce02 100644 --- a/README.md +++ b/README.md @@ -532,7 +532,7 @@ applications. The file is structured into three parts: - A list of attributes (e.g. `address`) and enumerations (e.g. `barn`) Effectively this NGSI-LD `@context` can be combined with a copy of the NGSI-LD core context -[https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld](https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld) +[https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6.jsonld](https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6.jsonld) to mechanically define the following: If a computer encounters an entity of `type=Building` this really refers to a @@ -583,7 +583,7 @@ For example this is a `Building` in _normalized_ NGSI-LD format: }, "@context": [ "https://example.com/data-models.context-ngsild.jsonld", - "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld" + "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6.jsonld" ] } ```