@@ -302,8 +302,7 @@ curl -X GET \
302302 "array": ["Arthur", "Dent"],
303303 "boolean": true,
304304 "number": 42,
305- "structuredValue": { "somevalue": "this" },
306- "text": "I never could get the hang of Thursdays"
305+ "text": "I never could get the hang of thursdays"
307306}
308307` ` `
309308
@@ -578,7 +577,7 @@ apply:
578577This example registers the Random Data Context Provider with the Orion Context Broker.
579578
580579The body of the request states that : _"The URL_ `http://context-provider:3000/random/weatherConditions` _is capable of
581- providing_ `relativeHumidity` and `temperature` _data for the entity called_ `id=urn:ngsi-ld:Store:001`._"_
580+ providing_ `relativeHumidity` _data for the entity called_ `id=urn:ngsi-ld:Store:001`._"_
582581
583582The values are **never** held within Orion, it is always requested on demand from the registered context provider. Orion
584583merely holds the registration information about which context providers can offer context data.
@@ -657,14 +656,9 @@ curl -X GET \
657656 "value": "Bösebrücke Einkauf",
658657 "metadata": {}
659658 },
660- "temperature": {
661- "type": "Number",
662- "value": "22.6",
663- "metadata": {}
664- },
665659 "relativeHumidity": {
666660 "type": "Number",
667- "value": "58" ,
661+ "value": 27 ,
668662 "metadata": {}
669663 }
670664}
@@ -722,17 +716,18 @@ curl -X GET \
722716 "dataProvided" : {
723717 "entities" : [
724718 {
725- "id" : " urn:ngsi-ld:Store:002 " ,
719+ "id" : " urn:ngsi-ld:Store:001 " ,
726720 "type" : " Store"
727721 }
728722 ],
729- "attrs" : [" temperature " , " relativeHumidity" ]
723+ "attrs" : [" relativeHumidity" ]
730724 },
731725 "provider" : {
732726 "http" : {
733727 "url" : " http://context-provider:3000/random/weatherConditions"
734728 },
735- "supportedForwardingMode" : " all"
729+ "supportedForwardingMode" : " all" ,
730+ "legacyForwarding" : false
736731 },
737732 "status" : " active"
738733 }
0 commit comments