@@ -308,7 +308,7 @@ required
308308
309309# ## Core Context
310310
311- [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)
311+ [https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld](https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld)
312312refers to the Core `@context` of NGSI-LD, this defines terms such as `id` and `type` which are common to all NGSI
313313entities, as well as defining terms such as `Property` and `Relationship`. The core context is so fundamental to
314314NGSI-LD, that it is added by default to any `@context` sent to a request.
@@ -350,7 +350,7 @@ not unexpected if elements such as `https://smartdatamodels.org/name` do not act
350350many IRIs within JSON-LD `@context` files, such as `http://schema.org/address` do indeed return web pages with more
351351information about themselves.
352352
353- If you take the NGSI-LD [Core @context](https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld)
353+ If you take the NGSI-LD [Core @context](https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld)
354354
355355` ` ` json
356356{
@@ -386,7 +386,7 @@ curl -iX POST \
386386 "id": "urn:ngsi-ld:Building:store001",
387387 "type": "Building",
388388 "category": {
389- "type": "VocabularyProperty ",
389+ "type": "VocabProperty ",
390390 "vocab": "commercial"
391391 },
392392 "address": {
@@ -415,7 +415,7 @@ curl -iX POST \
415415 },
416416 "@context": [
417417 "https://smart-data-models.github.io/dataModel.Building/context.jsonld",
418- "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld"
418+ "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld"
419419 ]
420420}'
421421` ` `
@@ -444,7 +444,7 @@ curl -iX POST \
444444 "id": "urn:ngsi-ld:Building:store002",
445445 "type": "Building",
446446 "category": {
447- "type": "VocabularyProperty ",
447+ "type": "VocabProperty ",
448448 "vocab": "commercial"
449449 },
450450 "address": {
@@ -473,7 +473,7 @@ curl -iX POST \
473473 },
474474 "@context": [
475475 "https://smart-data-models.github.io/dataModel.Building/context.jsonld",
476- "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld"
476+ "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld"
477477 ]
478478}'
479479` ` `
@@ -490,7 +490,7 @@ The `type` of a _property_ attribute must be one of the following:
490490- `"GeoProperty"` : ` "http://uri.etsi.org/ngsi-ld/GeoProperty"` for locations. Locations should be specified as
491491 Longitude-Latitude pairs in [GeoJSON format](https://tools.ietf.org/html/rfc7946). The preferred name for the
492492 primary location attribute is `location`
493- - ` "VocabularyProperty "` holds enumerated values and is a mapping of a URI to a value within the user'`@context`
493+ - ` "VocabProperty "` holds enumerated values and is a mapping of a URI to a value within the user'`@context`
494494- ` "LanguageProperty"` holds a set of internationalized strings.
495495- `"Property"` : ` "http://uri.etsi.org/ngsi-ld/Property"` - for everything else.
496496- For time-based values, `"Property"` shall be used as well, but the property value should be Date, Time or DateTime
@@ -551,7 +551,7 @@ curl -G -X GET \
551551
552552# ### Response:
553553
554- The response returns the Core `@context` by default (`https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld`)
554+ The response returns the Core `@context` by default (`https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld`)
555555and all attributes are expanded whenever possible.
556556
557557- ` id` , `type` and `location` are defined in the core context and are not expanded.
@@ -566,11 +566,11 @@ user `@context` when inserting the context data.
566566` ` ` json
567567[
568568 {
569- "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld",
569+ "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld",
570570 "id": "urn:ngsi-ld:Building:store001",
571571 "type": "https://smartdatamodels.org/dataModel.Building/Building",
572572 "https://smartdatamodels.org/dataModel.Building/category": {
573- "type": "VocabularyProperty ",
573+ "type": "VocabProperty ",
574574 "vocab": "commercial"
575575 },
576576 "https://smartdatamodels.org/address": {
@@ -599,11 +599,11 @@ user `@context` when inserting the context data.
599599 }
600600 },
601601 {
602- "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld",
602+ "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld",
603603 "id": "urn:ngsi-ld:Building:store002",
604604 "type": "https://smartdatamodels.org/dataModel.Building/Building",
605605 "https://smartdatamodels.org/dataModel.Building/category": {
606- "type": "VocabularyProperty ",
606+ "type": "VocabProperty ",
607607 "vocab": "commercial"
608608 },
609609 "https://smartdatamodels.org/address": {
@@ -648,16 +648,16 @@ curl -G -X GET \
648648
649649# ### Response:
650650
651- The response returns the Core `@context` by default (`https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld`)
651+ The response returns the Core `@context` by default (`https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld`)
652652and all attributes are expanded whenever possible.
653653
654654` ` ` json
655655{
656- "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld",
656+ "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld",
657657 "id": "urn:ngsi-ld:Building:store001",
658658 "type": "https://smartdatamodels.org/dataModel.Building/Building",
659659 "https://smartdatamodels.org/dataModel.Building/category": {
660- "type": "VocabularyProperty ",
660+ "type": "VocabProperty ",
661661 "vocab": "commercial"
662662 },
663663 "https://smartdatamodels.org/address": {
@@ -713,7 +713,7 @@ used as the `@context` returned in the response.
713713 {
714714 "@context": [
715715 "https://smart-data-models.github.io/dataModel.Building/context.jsonld",
716- "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld"
716+ "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld"
717717 ],
718718 "id": "urn:ngsi-ld:Building:store001",
719719 "type": "Building",
@@ -735,7 +735,7 @@ used as the `@context` returned in the response.
735735 {
736736 "@context": [
737737 "https://smart-data-models.github.io/dataModel.Building/context.jsonld",
738- "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld"
738+ "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld"
739739 ],
740740 "id": "urn:ngsi-ld:Building:store002",
741741 "type": "Building",
@@ -788,7 +788,7 @@ JSON-LD as shown:
788788 {
789789 "@context": [
790790 "https://smart-data-models.github.io/dataModel.Building/context.jsonld",
791- "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld"
791+ "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld"
792792 ],
793793 "id": "urn:ngsi-ld:Building:store002",
794794 "type": "Building",
@@ -818,7 +818,7 @@ Filtering can be done using the `q` parameter, comma separating the acceptable v
818818
819819> [!NOTE]
820820
821- > `category` has been defined as a **VocabularyProperty **, which would usually mean that the `vocab` value should be a
821+ > `category` has been defined as a **VocabProperty **, which would usually mean that the `vocab` value should be a
822822> URI defined in the `@context`. The `expandValues` hint indicates that URI expansion is required for the `category`
823823> attribute when querying the context data.
824824
@@ -844,7 +844,7 @@ The response is returned in JSON-LD format with short form attribute names:
844844 {
845845 "@context": [
846846 "https://smart-data-models.github.io/dataModel.Building/context.jsonld",
847- "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld"
847+ "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld"
848848 ],
849849 "id": "urn:ngsi-ld:Building:store001",
850850 "type": "Building",
@@ -866,7 +866,7 @@ The response is returned in JSON-LD format with short form attribute names:
866866 {
867867 "@context": [
868868 "https://smart-data-models.github.io/dataModel.Building/context.jsonld",
869- "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld"
869+ "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld"
870870 ],
871871 "id": "urn:ngsi-ld:Building:store002",
872872 "type": "Building",
@@ -916,7 +916,7 @@ Use of the `Link` header and the `options=keyValues` parameter reduces the respo
916916 {
917917 "@context": [
918918 "https://smart-data-models.github.io/dataModel.Building/context.jsonld",
919- "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.6 .jsonld"
919+ "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.8 .jsonld"
920920 ],
921921 "id": "urn:ngsi-ld:Building:store002",
922922 "type": "Building",
0 commit comments