From 4b8bbcc564f6552fc566782a1d7f37ace10634cc Mon Sep 17 00:00:00 2001 From: Jason Fox Date: Wed, 10 Jul 2024 13:19:41 +0200 Subject: [PATCH] Switching to user-context --- README.ja.md | 12 ++++++------ README.md | 12 ++++++------ docker-compose/common.yml | 2 +- services | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.ja.md b/README.ja.md index f5b45da..7f41224 100644 --- a/README.ja.md +++ b/README.ja.md @@ -251,7 +251,7 @@ tutorial: - "DUMMY_DEVICES_API_KEY=4jggokgpepnvsb2uv4s40d59ov" - "DUMMY_DEVICES_TRANSPORT=HTTP" - "DUMMY_DEVICES_PAYLOAD=JSON" - - "IOTA_JSON_LD_CONTEXT=http://context/ngsi-context.jsonld" + - "IOTA_JSON_LD_CONTEXT=http://context/user-context.jsonld" ``` `tutorial` コンテナは2つのポートでリッスンしています: @@ -272,7 +272,7 @@ tutorial: | DUMMY_DEVICES_API_KEY | `4jggokgpepnvsb2uv4s40d59ov` | JSON インタラクションに使用されるランダムなセキュリティ・キー - デバイスと IoT Agent 間の相互作用の整合性を確保するために使用されます | | DUMMY_DEVICES_TRANSPORT | `HTTP` | ダミー IoT デバイスで使用されるトランスポート・プロトコル | | DUMMY_DEVICES_PAYLOAD | `JSON` | ダミー IoT デバイスで使用されるペイロード形式 | -| IOTA_JSON_LD_CONTEXT | `http://context/ngsi-context.jsonld` | デバイス・データモデルの定義に使用される `@context` ファイルの場所 | +| IOTA_JSON_LD_CONTEXT | `http://context/user-context.jsonld` | デバイス・データモデルの定義に使用される `@context` ファイルの場所 | YAML ファイルで説明されている他の `tutorial` コンテナ設定値は、このチュートリアルでは使用しません。 @@ -314,7 +314,7 @@ iot-agent: - IOTA_HTTP_PORT=7896 - IOTA_PROVIDER_URL=http://iot-agent:4041 - IOTA_DEFAULT_RESOURCE=/iot/json - - IOTA_JSON_LD_CONTEXT=http://context/ngsi-context.jsonld + - IOTA_JSON_LD_CONTEXT=http://context/user-context.jsonld - IOTA_FALLBACK_TENANT=openiot - IOTA_MULTI_CORE=true ``` @@ -343,7 +343,7 @@ iot-agent: | IOTA_MONGO_DB | `iotagentul` | mongoDB で使用されるデータベースの名前 | | IOTA_HTTP_PORT | `7896` | IoT Agent が HTTP 経由で IoT デバイス トラフィックをリッスンするポート | | IOTA_PROVIDER_URL | `http://iot-agent:4041` | コマンドの登録時に Context Broker に渡される URL。Context Broker がデバイスにコマンドを発行するときにフォワーディング URL の場所として使用されます | -| IOTA_JSON_LD_CONTEXT | `http://context/ngsi-context.jsonld` | デバイス データ モデルの定義に使用される `@context` ファイルの場所 | +| IOTA_JSON_LD_CONTEXT | `http://context/user-context.jsonld` | デバイス データ モデルの定義に使用される `@context` ファイルの場所 | | IOTA_FALLBACK_TENANT | `openiot` | 通信から明示的なテナントを受信していない場合に使用するテナント | @@ -715,7 +715,7 @@ curl -G -iX GET 'http://localhost:1026/ngsi-ld/v1/entities/urn:ngsi-ld:Device:te ```json { "@context": [ - "http://context/ngsi-context.jsonld", + "http://context/user-context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.7.jsonld" ], "id": "urn:ngsi-ld:Device:temperature001", @@ -767,7 +767,7 @@ curl -L -X GET 'http://localhost:1026/ngsi-ld/v1/entities/?type=Device' \ [ { "@context": [ - "http://context/ngsi-context.jsonld", + "http://context/user-context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.7.jsonld" ], "id": "urn:ngsi-ld:Device:motion003", diff --git a/README.md b/README.md index 2bfda9a..1ca612a 100644 --- a/README.md +++ b/README.md @@ -255,7 +255,7 @@ tutorial: - "DUMMY_DEVICES_API_KEY=4jggokgpepnvsb2uv4s40d59ov" - "DUMMY_DEVICES_TRANSPORT=HTTP" - "DUMMY_DEVICES_PAYLOAD=JSON" - - "IOTA_JSON_LD_CONTEXT=http://context/ngsi-context.jsonld" + - "IOTA_JSON_LD_CONTEXT=http://context/user-context.jsonld" ``` The `tutorial` container is listening on two ports: @@ -276,7 +276,7 @@ The `tutorial` container is driven by environment variables as shown: | DUMMY_DEVICES_API_KEY | `4jggokgpepnvsb2uv4s40d59ov` | Random security key used for JSON interactions - used to ensure the integrity of interactions between the devices and the IoT Agent | | DUMMY_DEVICES_TRANSPORT | `HTTP` | The transport protocol used by the dummy IoT devices | | DUMMY_DEVICES_PAYLOAD | `JSON` | The payload format used by the dummy IoT devices | -| IOTA_JSON_LD_CONTEXT | `http://context/ngsi-context.jsonld` | The location of the `@context` file used to define the device data models | +| IOTA_JSON_LD_CONTEXT | `http://context/user-context.jsonld` | The location of the `@context` file used to define the device data models | The other `tutorial` container configuration values described in the YAML file are not used in this tutorial. @@ -316,7 +316,7 @@ iot-agent: - IOTA_HTTP_PORT=7896 - IOTA_PROVIDER_URL=http://iot-agent:4041 - IOTA_DEFAULT_RESOURCE=/iot/json - - IOTA_JSON_LD_CONTEXT=http://context/ngsi-context.jsonld + - IOTA_JSON_LD_CONTEXT=http://context/user-context.jsonld - IOTA_FALLBACK_TENANT=openiot - IOTA_MULTI_CORE=true ``` @@ -345,7 +345,7 @@ The `iot-agent` container is driven by environment variables as shown: | IOTA_MONGO_DB | `iotagentul` | The name of the database used in mongoDB | | IOTA_HTTP_PORT | `7896` | The port where the IoT Agent listens for IoT device traffic over HTTP | | IOTA_PROVIDER_URL | `http://iot-agent:4041` | URL passed to the Context Broker when commands are registered, used as a forwarding URL location when the Context Broker issues a command to a device | -| IOTA_JSON_LD_CONTEXT | `http://context/ngsi-context.jsonld` | The location of the `@context` file used to define the device data models | +| IOTA_JSON_LD_CONTEXT | `http://context/user-context.jsonld` | The location of the `@context` file used to define the device data models | | IOTA_FALLBACK_TENANT | `openiot` | The tenant to use if no explicit tenant has been received from communications | # Prerequisites @@ -712,7 +712,7 @@ curl -G -iX GET 'http://localhost:1026/ngsi-ld/v1/entities/urn:ngsi-ld:Device:te ```json { "@context": [ - "http://context/ngsi-context.jsonld", + "http://context/user-context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.7.jsonld" ], "id": "urn:ngsi-ld:Device:temperature001", @@ -766,7 +766,7 @@ curl -L -X GET 'http://localhost:1026/ngsi-ld/v1/entities/?type=Device' \ [ { "@context": [ - "http://context/ngsi-context.jsonld", + "http://context/user-context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.7.jsonld" ], "id": "urn:ngsi-ld:Device:motion003", diff --git a/docker-compose/common.yml b/docker-compose/common.yml index 2b00dec..6755738 100644 --- a/docker-compose/common.yml +++ b/docker-compose/common.yml @@ -151,7 +151,7 @@ services: - TWITTER_CONSUMER_KEY= - TWITTER_CONSUMER_SECRET= - MONGO_URL=mongodb://mongo-db:27017 - - IOTA_JSON_LD_CONTEXT=http://context/ngsi-context.jsonld + - IOTA_JSON_LD_CONTEXT=http://context/user-context.jsonld - MOVE_TRACTOR=-1 diff --git a/services b/services index d7b7908..49e7b4b 100755 --- a/services +++ b/services @@ -19,7 +19,7 @@ SCORPIO="http://scorpio:9090/scorpio/" ORION="http://orion:1026/version" IOT_AGENT="http://iot-agent:4041/version" STELLIO="http://localhost:8080/actuator/health" -CONTEXT="http://context/ngsi-context.jsonld" +CONTEXT="http://context/user-context.jsonld" CORE_CONTEXT="https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6.jsonld" dockerCmd="docker compose"