diff --git a/annotated-schemas/geo/common/data_types/bounding_box/_visited_properties.tsv b/annotated-schemas/geo/common/data_types/bounding_box/_visited_properties.tsv new file mode 100644 index 000000000..74a136b5c --- /dev/null +++ b/annotated-schemas/geo/common/data_types/bounding_box/_visited_properties.tsv @@ -0,0 +1 @@ +path @id diff --git a/annotated-schemas/geo/common/data_types/bounding_box/context.jsonld b/annotated-schemas/geo/common/data_types/bounding_box/context.jsonld new file mode 100644 index 000000000..83dcaf0ec --- /dev/null +++ b/annotated-schemas/geo/common/data_types/bounding_box/context.jsonld @@ -0,0 +1,9 @@ +{ + "@context": { + "bbox": { + "@container": "@list", + "@id": "geojson:bbox" + }, + "@version": 1.1 + } +} \ No newline at end of file diff --git a/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.json b/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.json index edbcbae42..f942c207c 100644 --- a/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.json +++ b/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.json @@ -15,6 +15,12 @@ "items": { "type": "number" }, + "x-jsonld-extra-terms": { + "bbox": { + "x-jsonld-container": "@list", + "x-jsonld-id": "geojson:bbox" + } + }, "x-schema-source": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.json" } }, diff --git a/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.yaml b/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.yaml index dceb82fac..cf53c35e8 100644 --- a/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.yaml +++ b/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.yaml @@ -8,6 +8,10 @@ x-defs: maxItems: 6 items: type: number + x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox x-schema-source: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.yaml allOf: - $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.bounding_box diff --git a/annotated-schemas/geo/common/data_types/bounding_box/schema.json b/annotated-schemas/geo/common/data_types/bounding_box/schema.json index 6bc888fc2..b7a6b90c6 100644 --- a/annotated-schemas/geo/common/data_types/bounding_box/schema.json +++ b/annotated-schemas/geo/common/data_types/bounding_box/schema.json @@ -12,5 +12,11 @@ ], "items": { "type": "number" + }, + "x-jsonld-extra-terms": { + "bbox": { + "x-jsonld-container": "@list", + "x-jsonld-id": "geojson:bbox" + } } } \ No newline at end of file diff --git a/annotated-schemas/geo/common/data_types/bounding_box/schema.yaml b/annotated-schemas/geo/common/data_types/bounding_box/schema.yaml index 68c9945b9..9e4175f3a 100644 --- a/annotated-schemas/geo/common/data_types/bounding_box/schema.yaml +++ b/annotated-schemas/geo/common/data_types/bounding_box/schema.yaml @@ -6,3 +6,7 @@ oneOf: maxItems: 6 items: type: number +x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox diff --git a/annotated-schemas/geo/features/feature/schema-oas3.0.json b/annotated-schemas/geo/features/feature/schema-oas3.0.json index 0d62462be..7842acaaf 100644 --- a/annotated-schemas/geo/features/feature/schema-oas3.0.json +++ b/annotated-schemas/geo/features/feature/schema-oas3.0.json @@ -8,6 +8,9 @@ { "type": "object", "properties": { + "bbox": { + "$ref": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/feature/schema-oas3.0.json#/x-defs/ogc.geo.common.data_types.bounding_box" + }, "links": { "type": "array", "items": { @@ -622,6 +625,29 @@ "x-schema-version": "http://json-schema.org/draft-07/schema#", "x-schema-source": "https://geojson.org/schema/Feature.json" }, + "ogc.geo.common.data_types.bounding_box": { + "type": "array", + "oneOf": [ + { + "minItems": 4, + "maxItems": 4 + }, + { + "minItems": 6, + "maxItems": 6 + } + ], + "items": { + "type": "number" + }, + "x-jsonld-extra-terms": { + "bbox": { + "x-jsonld-container": "@list", + "x-jsonld-id": "geojson:bbox" + } + }, + "x-schema-source": "https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.json" + }, "ogc.ogc-utils.json-link": { "description": "JSON Link", "type": "object", diff --git a/annotated-schemas/geo/features/feature/schema-oas3.0.yaml b/annotated-schemas/geo/features/feature/schema-oas3.0.yaml index 733da9e35..d20aa3c48 100644 --- a/annotated-schemas/geo/features/feature/schema-oas3.0.yaml +++ b/annotated-schemas/geo/features/feature/schema-oas3.0.yaml @@ -4,6 +4,8 @@ x-defs: - $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/feature/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.geojson - type: object properties: + bbox: + $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/feature/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.bounding_box links: type: array items: @@ -437,6 +439,20 @@ x-defs: geojson: https://purl.org/geojson/vocab# x-schema-version: http://json-schema.org/draft-07/schema# x-schema-source: https://geojson.org/schema/Feature.json + ogc.geo.common.data_types.bounding_box: + type: array + oneOf: + - minItems: 4 + maxItems: 4 + - minItems: 6 + maxItems: 6 + items: + type: number + x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox + x-schema-source: https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.yaml ogc.ogc-utils.json-link: description: JSON Link type: object diff --git a/annotated-schemas/geo/features/feature/schema.json b/annotated-schemas/geo/features/feature/schema.json index a2cfa77f6..468cf17e8 100644 --- a/annotated-schemas/geo/features/feature/schema.json +++ b/annotated-schemas/geo/features/feature/schema.json @@ -6,6 +6,9 @@ { "type": "object", "properties": { + "bbox": { + "$ref": "../../common/data_types/bounding_box/schema.json" + }, "links": { "type": "array", "items": { diff --git a/annotated-schemas/geo/features/feature/schema.yaml b/annotated-schemas/geo/features/feature/schema.yaml index ad552b186..c5448dfad 100644 --- a/annotated-schemas/geo/features/feature/schema.yaml +++ b/annotated-schemas/geo/features/feature/schema.yaml @@ -2,6 +2,8 @@ allOf: - $ref: ../../common/data_types/geojson/schema.yaml - type: object properties: + bbox: + $ref: ../../common/data_types/bounding_box/schema.yaml links: type: array items: diff --git a/annotated-schemas/geo/features/featureCollection/schema-oas3.0.json b/annotated-schemas/geo/features/featureCollection/schema-oas3.0.json index a28edfde5..8b59b255b 100644 --- a/annotated-schemas/geo/features/featureCollection/schema-oas3.0.json +++ b/annotated-schemas/geo/features/featureCollection/schema-oas3.0.json @@ -627,6 +627,9 @@ { "type": "object", "properties": { + "bbox": { + "$ref": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/featureCollection/schema-oas3.0.json#/x-defs/ogc.geo.common.data_types.bounding_box" + }, "links": { "type": "array", "items": { @@ -1240,6 +1243,29 @@ }, "x-schema-version": "http://json-schema.org/draft-07/schema#", "x-schema-source": "https://geojson.org/schema/Feature.json" + }, + "ogc.geo.common.data_types.bounding_box": { + "type": "array", + "oneOf": [ + { + "minItems": 4, + "maxItems": 4 + }, + { + "minItems": 6, + "maxItems": 6 + } + ], + "items": { + "type": "number" + }, + "x-jsonld-extra-terms": { + "bbox": { + "x-jsonld-container": "@list", + "x-jsonld-id": "geojson:bbox" + } + }, + "x-schema-source": "https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.json" } }, "allOf": [ diff --git a/annotated-schemas/geo/features/featureCollection/schema-oas3.0.yaml b/annotated-schemas/geo/features/featureCollection/schema-oas3.0.yaml index 0fabd78bb..f75d8eded 100644 --- a/annotated-schemas/geo/features/featureCollection/schema-oas3.0.yaml +++ b/annotated-schemas/geo/features/featureCollection/schema-oas3.0.yaml @@ -420,6 +420,8 @@ x-defs: - $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/featureCollection/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.geojson - type: object properties: + bbox: + $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/featureCollection/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.bounding_box links: type: array items: @@ -853,5 +855,19 @@ x-defs: geojson: https://purl.org/geojson/vocab# x-schema-version: http://json-schema.org/draft-07/schema# x-schema-source: https://geojson.org/schema/Feature.json + ogc.geo.common.data_types.bounding_box: + type: array + oneOf: + - minItems: 4 + maxItems: 4 + - minItems: 6 + maxItems: 6 + items: + type: number + x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox + x-schema-source: https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.yaml allOf: - $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/featureCollection/schema-oas3.0.yaml#/x-defs/ogc.geo.features.featureCollection diff --git a/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.json b/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.json index 3baac1732..223766c70 100644 --- a/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.json +++ b/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.json @@ -105,6 +105,9 @@ { "type": "object", "properties": { + "bbox": { + "$ref": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.json#/x-defs/ogc.geo.common.data_types.bounding_box" + }, "links": { "type": "array", "items": { @@ -1019,6 +1022,29 @@ "x-schema-version": "http://json-schema.org/draft-07/schema#", "x-schema-source": "https://geojson.org/schema/Feature.json" }, + "ogc.geo.common.data_types.bounding_box": { + "type": "array", + "oneOf": [ + { + "minItems": 4, + "maxItems": 4 + }, + { + "minItems": 6, + "maxItems": 6 + } + ], + "items": { + "type": "number" + }, + "x-jsonld-extra-terms": { + "bbox": { + "x-jsonld-container": "@list", + "x-jsonld-id": "geojson:bbox" + } + }, + "x-schema-source": "https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.json" + }, "beta.schemas.opengis.net_json-fg_geometry-objects.json": { "title": "the geometry objects", "description": "This JSON Schema is part of JSON-FG version 0.1.1", diff --git a/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.yaml b/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.yaml index 3c2068a7c..dbe04c4c1 100644 --- a/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.yaml +++ b/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.yaml @@ -66,6 +66,8 @@ x-defs: - $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.geojson - type: object properties: + bbox: + $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature-lenient/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.bounding_box links: type: array items: @@ -680,6 +682,20 @@ x-defs: geojson: https://purl.org/geojson/vocab# x-schema-version: http://json-schema.org/draft-07/schema# x-schema-source: https://geojson.org/schema/Feature.json + ogc.geo.common.data_types.bounding_box: + type: array + oneOf: + - minItems: 4 + maxItems: 4 + - minItems: 6 + maxItems: 6 + items: + type: number + x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox + x-schema-source: https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.yaml beta.schemas.opengis.net_json-fg_geometry-objects.json: title: the geometry objects description: This JSON Schema is part of JSON-FG version 0.1.1 diff --git a/annotated-schemas/geo/json-fg/feature/schema-oas3.0.json b/annotated-schemas/geo/json-fg/feature/schema-oas3.0.json index 8963caf63..7e4c944e3 100644 --- a/annotated-schemas/geo/json-fg/feature/schema-oas3.0.json +++ b/annotated-schemas/geo/json-fg/feature/schema-oas3.0.json @@ -110,6 +110,9 @@ { "type": "object", "properties": { + "bbox": { + "$ref": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature/schema-oas3.0.json#/x-defs/ogc.geo.common.data_types.bounding_box" + }, "links": { "type": "array", "items": { @@ -1024,6 +1027,29 @@ "x-schema-version": "http://json-schema.org/draft-07/schema#", "x-schema-source": "https://geojson.org/schema/Feature.json" }, + "ogc.geo.common.data_types.bounding_box": { + "type": "array", + "oneOf": [ + { + "minItems": 4, + "maxItems": 4 + }, + { + "minItems": 6, + "maxItems": 6 + } + ], + "items": { + "type": "number" + }, + "x-jsonld-extra-terms": { + "bbox": { + "x-jsonld-container": "@list", + "x-jsonld-id": "geojson:bbox" + } + }, + "x-schema-source": "https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.json" + }, "beta.schemas.opengis.net_json-fg_geometry-objects.json": { "title": "the geometry objects", "description": "This JSON Schema is part of JSON-FG version 0.1.1", diff --git a/annotated-schemas/geo/json-fg/feature/schema-oas3.0.yaml b/annotated-schemas/geo/json-fg/feature/schema-oas3.0.yaml index fad1b60d5..94f851fb0 100644 --- a/annotated-schemas/geo/json-fg/feature/schema-oas3.0.yaml +++ b/annotated-schemas/geo/json-fg/feature/schema-oas3.0.yaml @@ -71,6 +71,8 @@ x-defs: - $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.geojson - type: object properties: + bbox: + $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.bounding_box links: type: array items: @@ -685,6 +687,20 @@ x-defs: geojson: https://purl.org/geojson/vocab# x-schema-version: http://json-schema.org/draft-07/schema# x-schema-source: https://geojson.org/schema/Feature.json + ogc.geo.common.data_types.bounding_box: + type: array + oneOf: + - minItems: 4 + maxItems: 4 + - minItems: 6 + maxItems: 6 + items: + type: number + x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox + x-schema-source: https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.yaml beta.schemas.opengis.net_json-fg_geometry-objects.json: title: the geometry objects description: This JSON Schema is part of JSON-FG version 0.1.1 diff --git a/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.json b/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.json index c48db586d..3e82ea40b 100644 --- a/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.json +++ b/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.json @@ -383,6 +383,9 @@ { "type": "object", "properties": { + "bbox": { + "$ref": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.json#/x-defs/ogc.geo.common.data_types.bounding_box" + }, "links": { "type": "array", "items": { @@ -1650,6 +1653,29 @@ "x-schema-version": "http://json-schema.org/draft-07/schema#", "x-schema-source": "https://geojson.org/schema/Feature.json" }, + "ogc.geo.common.data_types.bounding_box": { + "type": "array", + "oneOf": [ + { + "minItems": 4, + "maxItems": 4 + }, + { + "minItems": 6, + "maxItems": 6 + } + ], + "items": { + "type": "number" + }, + "x-jsonld-extra-terms": { + "bbox": { + "x-jsonld-container": "@list", + "x-jsonld-id": "geojson:bbox" + } + }, + "x-schema-source": "https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.json" + }, "beta.schemas.opengis.net_json-fg_geometry-objects.json": { "title": "the geometry objects", "description": "This JSON Schema is part of JSON-FG version 0.1.1", diff --git a/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.yaml b/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.yaml index c4f2e9b3e..66e7b0ad9 100644 --- a/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.yaml +++ b/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.yaml @@ -248,6 +248,8 @@ x-defs: - $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.geojson - type: object properties: + bbox: + $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection-lenient/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.bounding_box links: type: array items: @@ -1097,6 +1099,20 @@ x-defs: geojson: https://purl.org/geojson/vocab# x-schema-version: http://json-schema.org/draft-07/schema# x-schema-source: https://geojson.org/schema/Feature.json + ogc.geo.common.data_types.bounding_box: + type: array + oneOf: + - minItems: 4 + maxItems: 4 + - minItems: 6 + maxItems: 6 + items: + type: number + x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox + x-schema-source: https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.yaml beta.schemas.opengis.net_json-fg_geometry-objects.json: title: the geometry objects description: This JSON Schema is part of JSON-FG version 0.1.1 diff --git a/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.json b/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.json index 33985cef8..38ff3df45 100644 --- a/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.json +++ b/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.json @@ -916,6 +916,9 @@ { "type": "object", "properties": { + "bbox": { + "$ref": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.json#/x-defs/ogc.geo.common.data_types.bounding_box" + }, "links": { "type": "array", "items": { @@ -1656,6 +1659,29 @@ "x-schema-version": "http://json-schema.org/draft-07/schema#", "x-schema-source": "https://geojson.org/schema/Feature.json" }, + "ogc.geo.common.data_types.bounding_box": { + "type": "array", + "oneOf": [ + { + "minItems": 4, + "maxItems": 4 + }, + { + "minItems": 6, + "maxItems": 6 + } + ], + "items": { + "type": "number" + }, + "x-jsonld-extra-terms": { + "bbox": { + "x-jsonld-container": "@list", + "x-jsonld-id": "geojson:bbox" + } + }, + "x-schema-source": "https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.json" + }, "beta.schemas.opengis.net_json-fg_geometry-objects.json": { "title": "the geometry objects", "description": "This JSON Schema is part of JSON-FG version 0.1.1", diff --git a/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.yaml b/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.yaml index 07753d08c..542bab2ee 100644 --- a/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.yaml +++ b/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.yaml @@ -605,6 +605,8 @@ x-defs: - $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.geojson - type: object properties: + bbox: + $ref: https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection/schema-oas3.0.yaml#/x-defs/ogc.geo.common.data_types.bounding_box links: type: array items: @@ -1103,6 +1105,20 @@ x-defs: geojson: https://purl.org/geojson/vocab# x-schema-version: http://json-schema.org/draft-07/schema# x-schema-source: https://geojson.org/schema/Feature.json + ogc.geo.common.data_types.bounding_box: + type: array + oneOf: + - minItems: 4 + maxItems: 4 + - minItems: 6 + maxItems: 6 + items: + type: number + x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox + x-schema-source: https://opengeospatial.github.io/bblocks/annotated-schemas/common/data_types/bounding_box/schema.yaml beta.schemas.opengis.net_json-fg_geometry-objects.json: title: the geometry objects description: This JSON Schema is part of JSON-FG version 0.1.1 diff --git a/bblocks.jsonld b/bblocks.jsonld index cb2a32842..28505d23e 100644 --- a/bblocks.jsonld +++ b/bblocks.jsonld @@ -101,12 +101,12 @@ "name": "OGC Main", "description": "\nThe OGC Building Blocks register provides an overview of a series of building blocks managed by the OGC community, including published standards, \n![](https://lucid.app/publicSegments/view/9d075f82-8611-4f32-83eb-994143669cc8/image.png)\n", "sparqlEndpoint": "https://defs-dev.opengis.net/fuseki/query", - "modified": "2024-02-02T09:56:30.733964", + "modified": "2024-02-03T23:04:43.171743", "tooling": { "bblocks-postprocess": { - "commitId": "\"cff75570b1aad9fb75cafe05d77efd0eb2884c2d", - "shortCommitId": "\"cff755", - "date": "2024-02-02T09:30:34+00:00\"" + "commitId": "\"d3ca95c6a06a13ca49593aac13774e5db6835687", + "shortCommitId": "\"d3ca95", + "date": "2024-02-02T10:25:57+00:00\"" } }, "gitRepository": "https://github.com/opengeospatial/bblocks", @@ -130,7 +130,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "1.0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 1, 7.13.2: Feature Collections Response", @@ -153,12 +153,15 @@ ], "group": "Common", "shaclRules": {}, + "ldContext": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/context.jsonld", "schema": { "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema.json" }, + "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/data_types/bounding_box/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/data_types/bounding_box/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/data_types/bounding_box/", - "validationPassed": true, + "validationPassed": false, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/common/data_types/bounding_box/", "documentation": { "markdown": { @@ -193,7 +196,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "IETF RFC 7946 - The GeoJSON Format", @@ -245,7 +248,7 @@ "itemClass": "parameter", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 1, 7.15.3: Parameter bbox", @@ -260,6 +263,7 @@ "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/parameters/bbox/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/parameters/bbox/schema.json" }, + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/parameters/bbox/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/parameters/bbox/", "validationPassed": true, "documentation": { @@ -295,7 +299,7 @@ "itemClass": "parameter", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 2, 6.3.1: Parameter bbox-crs", @@ -310,6 +314,7 @@ "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/parameters/bbox-crs/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/parameters/bbox-crs/schema.json" }, + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/parameters/bbox-crs/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/parameters/bbox-crs/", "validationPassed": true, "documentation": { @@ -345,7 +350,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "IETF RFC 8288 - Web Linking", @@ -361,6 +366,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/ogc-utils/json-link/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/json-link/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/json-link/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/json-link/", "validationPassed": true, "documentation": { @@ -396,7 +402,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC GeoPose 1.0 Data Exchange Draft Standard", @@ -448,7 +454,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC GeoPose 1.0 Data Exchange Draft Standard", @@ -500,7 +506,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC GeoPose 1.0 Data Exchange Draft Standard", @@ -553,7 +559,7 @@ "itemClass": "datatype", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "IETF RFC 3986 - Uniform Resource Identifiers (URI): Generic Syntax", @@ -575,6 +581,7 @@ "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/ogc-utils/iri-or-curie/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/ogc-utils/iri-or-curie/schema.json" }, + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/iri-or-curie/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/iri-or-curie/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/ogc-utils/iri-or-curie/", @@ -611,7 +618,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 1, 7.16.2: Feature Response", @@ -627,8 +634,9 @@ "group": "Common", "shaclRules": {}, "dependsOn": [ - "ogc.ogc-utils.json-link", - "ogc.geo.common.data_types.geojson" + "ogc.geo.common.data_types.bounding_box", + "ogc.geo.common.data_types.geojson", + "ogc.ogc-utils.json-link" ], "ldContext": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/feature/context.jsonld", "schema": { @@ -636,6 +644,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/feature/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/feature/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/feature/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/feature/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/features/feature/", @@ -672,7 +681,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [], "maturity": "development", "scope": "unstable", @@ -683,8 +692,8 @@ ], "shaclRules": {}, "dependsOn": [ - "ogc.ogc-utils.json-link", - "ogc.ogc-utils.iri-or-curie" + "ogc.ogc-utils.iri-or-curie", + "ogc.ogc-utils.json-link" ], "ldContext": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/link-role/context.jsonld", "schema": { @@ -692,6 +701,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/link-role/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/link-role/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/link-role/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/link-role/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/json-fg/link-role/", @@ -728,7 +738,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "link": "https://github.com/icsm-au/3d-csdm-schema", "sources": [], "maturity": "development", @@ -748,6 +758,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/ogc-utils/topology/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/topology/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/topology/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/topology/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/ogc-utils/topology/", @@ -784,7 +795,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 1, 7.14.2: Feature Collection Response", @@ -805,6 +816,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/featureCollection/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/feature/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/featureCollection/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/featureCollection/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/features/featureCollection/", @@ -841,7 +853,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC Testbed-17: OGC Features and Geometries JSON Engineering Report", @@ -861,6 +873,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature/schema.json", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature/", "validationPassed": true, "documentation": { @@ -896,7 +909,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC Testbed-17: OGC Features and Geometries JSON Engineering Report", @@ -919,6 +932,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature-lenient/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature-lenient/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature-lenient/", "validationPassed": true, "documentation": { @@ -954,7 +968,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC Testbed-17: OGC Features and Geometries JSON Engineering Report", @@ -965,8 +979,8 @@ "group": "JSON-FG", "shaclRules": {}, "dependsOn": [ - "ogc.geo.json-fg.feature", "ogc.geo.features.featureCollection", + "ogc.geo.json-fg.feature", "ogc.ogc-utils.json-link" ], "ldContext": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection/context.jsonld", @@ -975,6 +989,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection/schema.json", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/json-fg/featureCollection/", @@ -1011,7 +1026,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC Testbed-17: OGC Features and Geometries JSON Engineering Report", @@ -1027,14 +1042,15 @@ "shaclRules": {}, "dependsOn": [ "ogc.geo.features.featureCollection", - "ogc.geo.json-fg.feature-lenient", - "ogc.ogc-utils.json-link" + "ogc.ogc-utils.json-link", + "ogc.geo.json-fg.feature-lenient" ], "schema": { "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection-lenient/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection-lenient/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection-lenient/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection-lenient/", "validationPassed": true, "documentation": { diff --git a/bblocks.ttl b/bblocks.ttl index b0ce75374..11b819c6e 100644 --- a/bblocks.ttl +++ b/bblocks.ttl @@ -7,29 +7,6 @@ @prefix skos: . @prefix xsd: . - a skos:Concept, - dcat:Dataset, - bblocks:Schema ; - rdfs:label "Bounding Box" ; - dct:abstract "The bounding box JSON object describes a simple spatial extent of a resource. For OGC API’s this could be a feature, a feature collection or a dataset, but it can be used in any JSON resource that wants to communicate its rough location. The extent is simple in that the bounding box does not describe the precise location and shape of the resource, but provides an axis-aligned approximation of the spatial extent that can be used as an initial test whether two resources are potentially intersecting each other." ; - dct:created "2022-05-24T13:51:38+00:00"^^xsd:dateTime ; - dct:description [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/common/data_types/bounding_box/index.json" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.common.data_types.bounding_box" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/common/data_types/bounding_box/" ], - [ dct:format "text/markdown" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/common/data_types/bounding_box/index.md" ] ; - dct:hasVersion "1.0.1" ; - dct:modified "2024-02-02"^^xsd:date ; - dct:source ; - skos:inScheme ; - bblocks:hasSchema , - ; - bblocks:scope ; - bblocks:status . - a skos:Concept, dcat:Dataset, bblocks:Parameter ; @@ -38,14 +15,14 @@ dct:created "2022-05-24T13:51:38+00:00"^^xsd:dateTime ; dct:description [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/common/parameters/bbox/index.md" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.common.parameters.bbox" ], [ dct:format "application/json" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/common/parameters/bbox/index.json" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.common.parameters.bbox" ], [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/common/parameters/bbox/" ] ; dct:hasVersion "1.0" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:hasSchema , @@ -61,14 +38,14 @@ dct:created "2022-07-05T01:01:01+02:00"^^xsd:dateTime ; dct:description [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.common.parameters.bbox-crs" ], - [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/common/parameters/bbox-crs/index.json" ], [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/common/parameters/bbox-crs/index.md" ], + [ dct:format "application/json" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/common/parameters/bbox-crs/index.json" ], [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/common/parameters/bbox-crs/" ] ; dct:hasVersion "1.0" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:hasSchema , @@ -82,16 +59,16 @@ rdfs:label "GeoPose Advanced" ; dct:abstract "Advanced GeoPose allowing flexible outer frame specification, quaternion orientation, and valid time." ; dct:created "2023-07-13T00:00:00+00:00"^^xsd:dateTime ; - dct:description [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.geopose.advanced" ], + dct:description [ dct:format "text/markdown" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/geopose/advanced/index.md" ], [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/geopose/advanced/" ], - [ dct:format "text/markdown" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/geopose/advanced/index.md" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.geopose.advanced" ], [ dct:format "application/json" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/geopose/advanced/index.json" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:hasJsonLdContext ; @@ -107,16 +84,16 @@ rdfs:label "GeoPose Basic-Quaternion" ; dct:abstract "Basic GeoPose using quaternion to specify orientation" ; dct:created "2023-07-13T00:00:00+00:00"^^xsd:dateTime ; - dct:description [ dct:format "text/html" ; + dct:description [ dct:format "application/json" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/geopose/basic/quaternion/index.json" ], + [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/geopose/basic/quaternion/" ], [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.geopose.basic.quaternion" ], - [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/geopose/basic/quaternion/index.json" ], [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/geopose/basic/quaternion/index.md" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:hasJsonLdContext ; @@ -134,14 +111,14 @@ dct:created "2023-03-15T00:00:00+00:00"^^xsd:dateTime ; dct:description [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/geopose/basic/ypr/index.md" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.geopose.basic.ypr" ], [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/geopose/basic/ypr/" ], [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/geopose/basic/ypr/index.json" ] ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/geopose/basic/ypr/index.json" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.geopose.basic.ypr" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:hasJsonLdContext ; @@ -159,14 +136,14 @@ dct:created "2023-05-31T14:56:51+00:00"^^xsd:dateTime ; dct:description [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.featureCollection" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/json-fg/featureCollection/" ], [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/json-fg/featureCollection/index.md" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/json-fg/featureCollection/" ], [ dct:format "application/json" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/json-fg/featureCollection/index.json" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:dependsOn , @@ -187,14 +164,14 @@ dct:created "2023-08-08T00:00:00+00:00"^^xsd:dateTime ; dct:description [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/json-fg/featureCollection-lenient/" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.featureCollection-lenient" ], [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/json-fg/featureCollection-lenient/index.md" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.featureCollection-lenient" ], [ dct:format "application/json" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/json-fg/featureCollection-lenient/index.json" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:dependsOn , @@ -213,16 +190,16 @@ rdfs:label "Link with role and target conformance" ; dct:abstract "A JSON-FG compliant web link with mandatory annotation of link role and optional conformance information to describe target resource. Compliant with profile resource descriptor model." ; dct:created "2023-08-21T00:00:00+00:00"^^xsd:dateTime ; - dct:description [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.link-role" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/json-fg/link-role/" ], + dct:description [ dct:format "application/json" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/json-fg/link-role/index.json" ], [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/json-fg/link-role/index.md" ], - [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/json-fg/link-role/index.json" ] ; + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.link-role" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/json-fg/link-role/" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; skos:inScheme ; dcat:keyword "json-fg", "link", @@ -242,16 +219,16 @@ rdfs:label "Geometry using references" ; dct:abstract "Demonstration of a schema using coordinates of points, withpout duplication" ; dct:created "2023-04-05T00:00:00+00:00"^^xsd:dateTime ; - dct:description [ dct:format "text/markdown" ; + dct:description [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/ogc-utils/topology/" ], + [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/ogc-utils/topology/index.md" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.ogc-utils.topology" ], [ dct:format "application/json" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/ogc-utils/topology/index.json" ], [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/ogc-utils/topology/" ] ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.ogc-utils.topology" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; skos:inScheme ; dcat:keyword "3D", "geometry", @@ -276,22 +253,47 @@ rdfs:label "OGC API - Features, Part 1, 7.16.2: Feature Response" . + a skos:Concept, + dcat:Dataset, + bblocks:Schema ; + rdfs:label "Bounding Box" ; + dct:abstract "The bounding box JSON object describes a simple spatial extent of a resource. For OGC API’s this could be a feature, a feature collection or a dataset, but it can be used in any JSON resource that wants to communicate its rough location. The extent is simple in that the bounding box does not describe the precise location and shape of the resource, but provides an axis-aligned approximation of the spatial extent that can be used as an initial test whether two resources are potentially intersecting each other." ; + dct:created "2022-05-24T13:51:38+00:00"^^xsd:dateTime ; + dct:description [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.common.data_types.bounding_box" ], + [ dct:format "text/markdown" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/common/data_types/bounding_box/index.md" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/common/data_types/bounding_box/" ], + [ dct:format "application/json" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/common/data_types/bounding_box/index.json" ] ; + dct:hasVersion "1.0.1" ; + dct:modified "2024-02-03"^^xsd:date ; + dct:source ; + skos:inScheme ; + bblocks:hasJsonLdContext ; + bblocks:hasSchema , + ; + bblocks:hasSourceJsonLdContext ; + bblocks:scope ; + bblocks:status . + a skos:Concept, dcat:Dataset, bblocks:Schema ; rdfs:label "GeoJSON" ; dct:abstract "A GeoJSON object" ; dct:created "2023-05-24T14:56:51+00:00"^^xsd:dateTime ; - dct:description [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/common/data_types/geojson/index.json" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.common.data_types.geojson" ], - [ dct:format "text/html" ; + dct:description [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/common/data_types/geojson/" ], [ dct:format "text/markdown" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/common/data_types/geojson/index.md" ] ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/common/data_types/geojson/index.md" ], + [ dct:format "application/json" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/common/data_types/geojson/index.json" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.common.data_types.geojson" ] ; dct:hasVersion "1.0" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:hasJsonLdContext ; @@ -307,16 +309,16 @@ rdfs:label "JSON-FG Feature" ; dct:abstract "A OGC Features and Geometries JSON (JSON-FG) Feature, extending GeoJSON to support a limited set of additional capabilities that are out-of-scope for GeoJSON, but that are important for a variety of use cases involving feature data." ; dct:created "2023-05-31T14:56:51+00:00"^^xsd:dateTime ; - dct:description [ dct:format "text/markdown" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/json-fg/feature/index.md" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.feature" ], - [ dct:format "application/json" ; + dct:description [ dct:format "application/json" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/json-fg/feature/index.json" ], [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/json-fg/feature/" ] ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/json-fg/feature/" ], + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.feature" ], + [ dct:format "text/markdown" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/json-fg/feature/index.md" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:dependsOn , @@ -334,16 +336,16 @@ rdfs:label "JSON-FG Feature - Lenient" ; dct:abstract "A OGC Features and Geometries JSON (JSON-FG) Feature that does not require the \"time\" and \"place\" properties." ; dct:created "2023-08-08T00:00:00+00:00"^^xsd:dateTime ; - dct:description [ dct:format "text/markdown" ; + dct:description [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.feature-lenient" ], + [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/json-fg/feature-lenient/index.md" ], [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/json-fg/feature-lenient/" ], [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/json-fg/feature-lenient/index.json" ], - [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.json-fg.feature-lenient" ] ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/json-fg/feature-lenient/index.json" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:dependsOn , @@ -371,16 +373,16 @@ rdfs:label "Feature Collection" ; dct:abstract "A collection of features." ; dct:created "2023-06-26T14:56:51+00:00"^^xsd:dateTime ; - dct:description [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.features.featureCollection" ], - [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/features/featureCollection/index.json" ], + dct:description [ dct:format "text/markdown" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/features/featureCollection/index.md" ], [ dct:format "text/html" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/features/featureCollection/" ], - [ dct:format "text/markdown" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/features/featureCollection/index.md" ] ; + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.features.featureCollection" ], + [ dct:format "application/json" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/features/featureCollection/index.json" ] ; dct:hasVersion "1.0" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:dependsOn , @@ -407,7 +409,7 @@ [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/ogc-utils/iri-or-curie/index.md" ] ; dct:hasVersion "1.0" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source , , ; @@ -425,20 +427,21 @@ rdfs:label "Feature" ; dct:abstract "A feature. Every feature is a sub-resource of an OGC Collection." ; dct:created "2023-05-24T14:56:51+00:00"^^xsd:dateTime ; - dct:description [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/features/feature/index.json" ], - [ dct:format "text/markdown" ; + dct:description [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/geo/features/feature/index.md" ], [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/features/feature/" ], + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.features.feature" ], + [ dct:format "application/json" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/geo/features/feature/index.json" ], [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.geo.features.feature" ] ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/geo/features/feature/" ] ; dct:hasVersion "1.0" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source , ; skos:inScheme ; - bblocks:dependsOn , + bblocks:dependsOn , + , ; bblocks:hasJsonLdContext ; bblocks:hasSchema , @@ -455,16 +458,16 @@ rdfs:label "JSON Link" ; dct:abstract "Web linking is used to express relationships between resources. The JSON object representation of links described here is used consistently in OGC API’s." ; dct:created "2022-05-18T15:21:59+00:00"^^xsd:dateTime ; - dct:description [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.ogc-utils.json-link" ], + dct:description [ dct:format "application/json" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/ogc-utils/json-link/index.json" ], [ dct:format "text/html" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/ogc-utils/json-link/" ], + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/register/bblock/ogc.ogc-utils.json-link" ], [ dct:format "text/markdown" ; rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/markdown/ogc-utils/json-link/index.md" ], - [ dct:format "application/json" ; - rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/json-full/ogc-utils/json-link/index.json" ] ; + [ dct:format "text/html" ; + rdfs:isDefinedBy "https://opengeospatial.github.io/bblocks/generateddocs/slate-build/ogc-utils/json-link/" ] ; dct:hasVersion "0.1" ; - dct:modified "2024-02-02"^^xsd:date ; + dct:modified "2024-02-03"^^xsd:date ; dct:source ; skos:inScheme ; bblocks:hasJsonLdContext ; @@ -485,15 +488,15 @@ The OGC Building Blocks register provides an overview of a series of building bl bblocks:hasValidationReport . [] a prov:Activity ; - prov:endedAtTime "2024-02-02T09:56:41.874254"^^xsd:dateTime ; - prov:startedAtTime "2024-02-02T09:56:41.789832"^^xsd:dateTime ; + prov:endedAtTime "2024-02-03T23:04:51.796593"^^xsd:dateTime ; + prov:startedAtTime "2024-02-03T23:04:51.711759"^^xsd:dateTime ; prov:used [ a prov:Entity ; - dct:format "application/yaml" ; - rdfs:seeAlso ], - [ a prov:Entity ; dct:format "application/json" ; - dct:hasVersion "git:7101256f409632e0576b884da1dc175abdc6776c" ; - rdfs:seeAlso ] ; + dct:hasVersion "git:abb588c31f32386e8faa9175d172e0a96a28eef3" ; + rdfs:seeAlso ], + [ a prov:Entity ; + dct:format "application/yaml" ; + rdfs:seeAlso ] ; prov:wasAssociatedWith [ a prov:Agent, schema:SoftwareApplication ; rdfs:label "OGC-NA tools" ; diff --git a/generateddocs/json-full/geo/common/data_types/bounding_box/index.json b/generateddocs/json-full/geo/common/data_types/bounding_box/index.json index 21ab329fb..054df931e 100644 --- a/generateddocs/json-full/geo/common/data_types/bounding_box/index.json +++ b/generateddocs/json-full/geo/common/data_types/bounding_box/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "1.0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 1, 7.13.2: Feature Collections Response", @@ -32,12 +32,15 @@ ], "group": "Common", "shaclRules": {}, + "ldContext": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/context.jsonld", "schema": { "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema.json" }, + "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/data_types/bounding_box/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/data_types/bounding_box/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/data_types/bounding_box/", - "validationPassed": true, + "validationPassed": false, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/common/data_types/bounding_box/", "description": "A bounding box is provided as an array of four or six numbers, depending on whether the coordinate reference system includes a vertical axis (height or depth):\n\n* Lower left corner, coordinate axis 1\n* Lower left corner, coordinate axis 2\n* Minimum value, coordinate axis 3 (optional)\n* Upper right corner, coordinate axis 1\n* Upper right corner, coordinate axis 2\n* Maximum value, coordinate axis 3 (optional)\n\nIf the value consists of four numbers, the coordinate reference system is WGS 84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84) unless a different coordinate reference system is specified.\n\nIf the value consists of six numbers, the coordinate reference system is WGS 84 longitude/latitude/height (http://www.opengis.net/def/crs/OGC/0/CRS84h) unless a different coordinate reference system is specified.\n\nHow a different coordinate reference system is specified depends on the context in which the bounding box is used.\n\nFor WGS 84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge).\n\nIf the vertical axis is included, the third and the sixth number are the bottom and the top of the 3-dimensional bounding box.\n\nThe text representation of a bounding box is based on the JSON representation and represents the array as comma-separated values.\n", "examples": [ @@ -52,11 +55,21 @@ { "language": "plaintext", "code": "-124.7844079,24.7433195,-66.9513812,49.3457868" + }, + { + "language": "jsonld", + "code": "{\n \"@context\": \"https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/context.jsonld\",\n \"@graph\": [\n -124.7844079,\n 24.7433195,\n -66.9513812,\n 49.3457868\n ]\n}", + "url": "https://opengeospatial.github.io/bblocks/tests/geo/common/data_types/bounding_box/example_1_1.jsonld" + }, + { + "language": "ttl", + "code": "\n", + "url": "https://opengeospatial.github.io/bblocks/tests/geo/common/data_types/bounding_box/example_1_1.ttl" } ] } ], - "annotatedSchema": "type: array\noneOf:\n- minItems: 4\n maxItems: 4\n- minItems: 6\n maxItems: 6\nitems:\n type: number\n", + "annotatedSchema": "type: array\noneOf:\n- minItems: 4\n maxItems: 4\n- minItems: 6\n maxItems: 6\nitems:\n type: number\nx-jsonld-extra-terms:\n bbox:\n x-jsonld-container: '@list'\n x-jsonld-id: geojson:bbox\n", "gitRepository": "https://github.com/opengeospatial/bblocks", "gitPath": "registereditems/geo/common/data_types/bounding_box" } \ No newline at end of file diff --git a/generateddocs/json-full/geo/common/data_types/geojson/index.json b/generateddocs/json-full/geo/common/data_types/geojson/index.json index 616a7c85f..c6d660e5f 100644 --- a/generateddocs/json-full/geo/common/data_types/geojson/index.json +++ b/generateddocs/json-full/geo/common/data_types/geojson/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "IETF RFC 7946 - The GeoJSON Format", diff --git a/generateddocs/json-full/geo/common/parameters/bbox-crs/index.json b/generateddocs/json-full/geo/common/parameters/bbox-crs/index.json index de4d4f1fe..bec5a2b98 100644 --- a/generateddocs/json-full/geo/common/parameters/bbox-crs/index.json +++ b/generateddocs/json-full/geo/common/parameters/bbox-crs/index.json @@ -9,7 +9,7 @@ "itemClass": "parameter", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 2, 6.3.1: Parameter bbox-crs", @@ -24,6 +24,7 @@ "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/parameters/bbox-crs/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/parameters/bbox-crs/schema.json" }, + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/parameters/bbox-crs/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/parameters/bbox-crs/", "validationPassed": true, "description": "If the `bbox-crs` parameter is specified, then the values of the `bbox` parameter are assumed to be in the specified\ncoordinate reference system and the server will perform the necessary internal transformations to properly fetch data\nfrom within the specified bounding box.\n\nOtherwise, the values for the `bbox` parameter shall be assumed to be WGS 84 longitude-latitude for coordinates\nwithout height and WGS 84 longitude-latitude-height for coordinates with height.", diff --git a/generateddocs/json-full/geo/common/parameters/bbox/index.json b/generateddocs/json-full/geo/common/parameters/bbox/index.json index f4c8eeae3..543ed7af6 100644 --- a/generateddocs/json-full/geo/common/parameters/bbox/index.json +++ b/generateddocs/json-full/geo/common/parameters/bbox/index.json @@ -9,7 +9,7 @@ "itemClass": "parameter", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 1, 7.15.3: Parameter bbox", @@ -24,6 +24,7 @@ "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/parameters/bbox/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/parameters/bbox/schema.json" }, + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/parameters/bbox/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/common/parameters/bbox/", "validationPassed": true, "description": "`bbox` is a query parameter that may be applied in GET requests on a collection of resources.\n\nThe parameter, if provided, selects the resources with a spatial extent that intersects the specified bounding box.\n\nThe coordinates of the bounding box are in longitude, latitude and optionally ellipsoidal height unless a different\ncoordinate reference system is specified in the query parameter `bbox-crs`.\n\nThe bounding box is provided as four or six numbers, depending on whether the coordinate reference system includes a\nvertical axis (height or depth):\n\n* Lower left corner, coordinate axis 1\n* Lower left corner, coordinate axis 2\n* Minimum value, coordinate axis 3 (optional)\n* Upper right corner, coordinate axis 1\n* Upper right corner, coordinate axis 2\n* Maximum value, coordinate axis 3 (optional)\n\nThe `bbox` parameter matches all resources in the collection that are not associated with a spatial geometry, too.\n\nIf a resource has multiple spatial geometry properties, it is the decision of the server whether only a single spatial\ngeometry property is used to determine the spatial extent or all relevant geometries.\n", diff --git a/generateddocs/json-full/geo/features/feature/index.json b/generateddocs/json-full/geo/features/feature/index.json index e289992b5..555c18717 100644 --- a/generateddocs/json-full/geo/features/feature/index.json +++ b/generateddocs/json-full/geo/features/feature/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 1, 7.16.2: Feature Response", @@ -25,8 +25,9 @@ "group": "Common", "shaclRules": {}, "dependsOn": [ - "ogc.ogc-utils.json-link", - "ogc.geo.common.data_types.geojson" + "ogc.geo.common.data_types.bounding_box", + "ogc.geo.common.data_types.geojson", + "ogc.ogc-utils.json-link" ], "ldContext": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/feature/context.jsonld", "schema": { @@ -34,6 +35,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/feature/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/feature/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/feature/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/feature/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/features/feature/", @@ -63,7 +65,7 @@ ] } ], - "annotatedSchema": "allOf:\n- $ref: ../../common/data_types/geojson/schema.yaml\n- type: object\n properties:\n links:\n type: array\n items:\n $ref: ../../../ogc-utils/json-link/schema.yaml\n x-jsonld-id: http://www.w3.org/2000/01/rdf-schema#seeAlso\n type:\n const: Feature\n required:\n - type\n - geometry\n - properties\nx-jsonld-extra-terms:\n properties: '@nest'\nx-jsonld-prefixes:\n rdfs: http://www.w3.org/2000/01/rdf-schema#\n", + "annotatedSchema": "allOf:\n- $ref: ../../common/data_types/geojson/schema.yaml\n- type: object\n properties:\n bbox:\n $ref: ../../common/data_types/bounding_box/schema.yaml\n links:\n type: array\n items:\n $ref: ../../../ogc-utils/json-link/schema.yaml\n x-jsonld-id: http://www.w3.org/2000/01/rdf-schema#seeAlso\n type:\n const: Feature\n required:\n - type\n - geometry\n - properties\nx-jsonld-extra-terms:\n properties: '@nest'\nx-jsonld-prefixes:\n rdfs: http://www.w3.org/2000/01/rdf-schema#\n", "gitRepository": "https://github.com/opengeospatial/bblocks", "gitPath": "registereditems/geo/features/feature" } \ No newline at end of file diff --git a/generateddocs/json-full/geo/features/featureCollection/index.json b/generateddocs/json-full/geo/features/featureCollection/index.json index 18cb1b522..eefd3cfe3 100644 --- a/generateddocs/json-full/geo/features/featureCollection/index.json +++ b/generateddocs/json-full/geo/features/featureCollection/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC API - Features, Part 1, 7.14.2: Feature Collection Response", @@ -30,6 +30,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/featureCollection/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/feature/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/featureCollection/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/features/featureCollection/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/features/featureCollection/", diff --git a/generateddocs/json-full/geo/geopose/advanced/index.json b/generateddocs/json-full/geo/geopose/advanced/index.json index 5133881a9..9b333eb59 100644 --- a/generateddocs/json-full/geo/geopose/advanced/index.json +++ b/generateddocs/json-full/geo/geopose/advanced/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC GeoPose 1.0 Data Exchange Draft Standard", diff --git a/generateddocs/json-full/geo/geopose/basic/quaternion/index.json b/generateddocs/json-full/geo/geopose/basic/quaternion/index.json index edc3266e6..ff4b482df 100644 --- a/generateddocs/json-full/geo/geopose/basic/quaternion/index.json +++ b/generateddocs/json-full/geo/geopose/basic/quaternion/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC GeoPose 1.0 Data Exchange Draft Standard", diff --git a/generateddocs/json-full/geo/geopose/basic/ypr/index.json b/generateddocs/json-full/geo/geopose/basic/ypr/index.json index 63c0b8124..fe6226afa 100644 --- a/generateddocs/json-full/geo/geopose/basic/ypr/index.json +++ b/generateddocs/json-full/geo/geopose/basic/ypr/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC GeoPose 1.0 Data Exchange Draft Standard", diff --git a/generateddocs/json-full/geo/json-fg/feature-lenient/index.json b/generateddocs/json-full/geo/json-fg/feature-lenient/index.json index b2043ed4c..9e2d19603 100644 --- a/generateddocs/json-full/geo/json-fg/feature-lenient/index.json +++ b/generateddocs/json-full/geo/json-fg/feature-lenient/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC Testbed-17: OGC Features and Geometries JSON Engineering Report", @@ -32,6 +32,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature-lenient/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature-lenient/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature-lenient/", "validationPassed": true, "description": "OGC Features and Geometries JSON (JSON-FG) extends GeoJSON to support a limited set of additional capabilities that are\nout-of-scope for GeoJSON, but that are essential or important for a variety of use cases involving feature data.\n\nThis Building Block extends the standard JSON-FG one by removing the requirement to provide values for the \n\"time\" and \"place\" properties.\n", diff --git a/generateddocs/json-full/geo/json-fg/feature/index.json b/generateddocs/json-full/geo/json-fg/feature/index.json index 48c494b11..1952dbeb0 100644 --- a/generateddocs/json-full/geo/json-fg/feature/index.json +++ b/generateddocs/json-full/geo/json-fg/feature/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC Testbed-17: OGC Features and Geometries JSON Engineering Report", @@ -29,6 +29,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/feature/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature/schema.json", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/feature/", "validationPassed": true, "description": "OGC Features and Geometries JSON (JSON-FG) extends GeoJSON to support a limited set of additional capabilities that are\nout-of-scope for GeoJSON, but that are essential or important for a variety of use cases involving feature data.\n\nInformation that can be represented as GeoJSON is encoded as GeoJSON. Additional information is mainly encoded in\nadditional top-level members of GeoJSON objects. The members use keys that do not conflict with GeoJSON including the\nobsolete version that pre-dates the IETF standard. GeoJSON clients will be able to parse and understand all aspects that\nare specified by GeoJSON, JSON-FG clients will also parse and understand the additional capabilities.\n\nThis Standard specifies the following minimal extensions to the GeoJSON Standard:\n\n* The ability to use Coordinate Reference Systems (CRSs) other than WGS 84;\n* The ability to use non-Euclidean metrics, in particular ellipsoidal metrics;\n* Support for solids and prisms as geometry types;\n* The ability to encode temporal characteristics of a feature; and\n* The ability to declare the type and the schema of a feature.\n\nInformation that can be represented as GeoJSON is encoded as GeoJSON. Additional information is mainly encoded in\nadditional members of the GeoJSON objects. The additional members use keys that do not conflict with GeoJSON. This is so\nexisting and future GeoJSON clients will continue to parse and understand GeoJSON content. JSON-FG enabled clients will\nalso be able to parse and understand the additional members.\n\nJSON Schema is used to formally specify the JSON-FG syntax.", diff --git a/generateddocs/json-full/geo/json-fg/featureCollection-lenient/index.json b/generateddocs/json-full/geo/json-fg/featureCollection-lenient/index.json index c66cf20d6..e8376a7b7 100644 --- a/generateddocs/json-full/geo/json-fg/featureCollection-lenient/index.json +++ b/generateddocs/json-full/geo/json-fg/featureCollection-lenient/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC Testbed-17: OGC Features and Geometries JSON Engineering Report", @@ -25,14 +25,15 @@ "shaclRules": {}, "dependsOn": [ "ogc.geo.features.featureCollection", - "ogc.geo.json-fg.feature-lenient", - "ogc.ogc-utils.json-link" + "ogc.ogc-utils.json-link", + "ogc.geo.json-fg.feature-lenient" ], "schema": { "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection-lenient/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection-lenient/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection-lenient/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection-lenient/", "validationPassed": true, "description": "OGC Features and Geometries JSON (JSON-FG) extends GeoJSON to support a limited set of additional capabilities that are\nout-of-scope for GeoJSON, but that are essential or important for a variety of use cases involving feature data.\nA **lenient** feature collection contains a set of **lenient** features from a dataset (features that do not\nneed to provide values for their `place` or `time` properties).", diff --git a/generateddocs/json-full/geo/json-fg/featureCollection/index.json b/generateddocs/json-full/geo/json-fg/featureCollection/index.json index a9f353585..540e28da5 100644 --- a/generateddocs/json-full/geo/json-fg/featureCollection/index.json +++ b/generateddocs/json-full/geo/json-fg/featureCollection/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "OGC Testbed-17: OGC Features and Geometries JSON Engineering Report", @@ -20,8 +20,8 @@ "group": "JSON-FG", "shaclRules": {}, "dependsOn": [ - "ogc.geo.json-fg.feature", "ogc.geo.features.featureCollection", + "ogc.geo.json-fg.feature", "ogc.ogc-utils.json-link" ], "ldContext": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection/context.jsonld", @@ -30,6 +30,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/featureCollection/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection/schema.json", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/featureCollection/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/json-fg/featureCollection/", diff --git a/generateddocs/json-full/geo/json-fg/link-role/index.json b/generateddocs/json-full/geo/json-fg/link-role/index.json index c2ac97ce7..5a1aae111 100644 --- a/generateddocs/json-full/geo/json-fg/link-role/index.json +++ b/generateddocs/json-full/geo/json-fg/link-role/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [], "maturity": "development", "scope": "unstable", @@ -20,8 +20,8 @@ ], "shaclRules": {}, "dependsOn": [ - "ogc.ogc-utils.json-link", - "ogc.ogc-utils.iri-or-curie" + "ogc.ogc-utils.iri-or-curie", + "ogc.ogc-utils.json-link" ], "ldContext": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/link-role/context.jsonld", "schema": { @@ -29,6 +29,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/json-fg/link-role/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/link-role/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/link-role/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/geo/json-fg/link-role/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/geo/json-fg/link-role/", diff --git a/generateddocs/json-full/ogc-utils/iri-or-curie/index.json b/generateddocs/json-full/ogc-utils/iri-or-curie/index.json index 35face671..e828ac4b5 100644 --- a/generateddocs/json-full/ogc-utils/iri-or-curie/index.json +++ b/generateddocs/json-full/ogc-utils/iri-or-curie/index.json @@ -9,7 +9,7 @@ "itemClass": "datatype", "register": "ogc-building-block-register", "version": "1.0", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "IETF RFC 3986 - Uniform Resource Identifiers (URI): Generic Syntax", @@ -31,6 +31,7 @@ "application/yaml": "https://opengeospatial.github.io/bblocks/annotated-schemas/ogc-utils/iri-or-curie/schema.yaml", "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/ogc-utils/iri-or-curie/schema.json" }, + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/iri-or-curie/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/iri-or-curie/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/ogc-utils/iri-or-curie/", diff --git a/generateddocs/json-full/ogc-utils/json-link/index.json b/generateddocs/json-full/ogc-utils/json-link/index.json index 7c1f6b6a2..b56d5a214 100644 --- a/generateddocs/json-full/ogc-utils/json-link/index.json +++ b/generateddocs/json-full/ogc-utils/json-link/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "sources": [ { "title": "IETF RFC 8288 - Web Linking", @@ -25,6 +25,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/ogc-utils/json-link/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/json-link/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/json-link/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/json-link/", "validationPassed": true, "annotatedSchema": "$schema: https://json-schema.org/draft/2020-12/schema\ndescription: JSON Link\ntype: object\nrequired:\n- href\n- rel\nproperties:\n href:\n type: string\n format: uri-reference\n x-jsonld-type: '@id'\n x-jsonld-id: http://www.w3.org/ns/oa#hasTarget\n rel:\n type: string\n x-jsonld-id: http://www.iana.org/assignments/relation\n x-jsonld-type: '@id'\n x-jsonld-base: http://www.iana.org/assignments/relation/\n anchor:\n type: string\n type:\n type: string\n x-jsonld-id: http://purl.org/dc/terms/type\n hreflang:\n type: string\n x-jsonld-id: http://purl.org/dc/terms/language\n title:\n type: string\n x-jsonld-id: http://www.w3.org/2000/01/rdf-schema#label\n length:\n type: integer\n x-jsonld-id: http://purl.org/dc/terms/extent\nx-jsonld-prefixes:\n oa: http://www.w3.org/ns/oa#\n rdfs: http://www.w3.org/2000/01/rdf-schema#\n dct: http://purl.org/dc/terms/\n", diff --git a/generateddocs/json-full/ogc-utils/topology/index.json b/generateddocs/json-full/ogc-utils/topology/index.json index e7d1f2daa..2fa8dd929 100644 --- a/generateddocs/json-full/ogc-utils/topology/index.json +++ b/generateddocs/json-full/ogc-utils/topology/index.json @@ -9,7 +9,7 @@ "itemClass": "schema", "register": "ogc-building-block-register", "version": "0.1", - "dateOfLastChange": "2024-02-02", + "dateOfLastChange": "2024-02-03", "link": "https://github.com/icsm-au/3d-csdm-schema", "sources": [], "maturity": "development", @@ -29,6 +29,7 @@ "application/json": "https://opengeospatial.github.io/bblocks/annotated-schemas/ogc-utils/topology/schema.json" }, "sourceLdContext": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/topology/context.jsonld", + "sourceSchema": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/topology/schema.yaml", "sourceFiles": "https://opengeospatial.github.io/bblocks/registereditems/ogc-utils/topology/", "validationPassed": true, "testOutputs": "https://github.com/opengeospatial/bblocks/blob/master/tests/ogc-utils/topology/", diff --git a/generateddocs/markdown/geo/common/data_types/bounding_box/index.md b/generateddocs/markdown/geo/common/data_types/bounding_box/index.md index 72690a691..1d930cc30 100644 --- a/generateddocs/markdown/geo/common/data_types/bounding_box/index.md +++ b/generateddocs/markdown/geo/common/data_types/bounding_box/index.md @@ -43,6 +43,25 @@ The text representation of a bounding box is based on the JSON representation an -124.7844079,24.7433195,-66.9513812,49.3457868 ``` +#### jsonld +```jsonld +{ + "@context": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/context.jsonld", + "@graph": [ + -124.7844079, + 24.7433195, + -66.9513812, + 49.3457868 + ] +} +``` + +#### ttl +```ttl + + +``` + ## Schema ```yaml @@ -54,6 +73,10 @@ oneOf: maxItems: 6 items: type: number +x-jsonld-extra-terms: + bbox: + x-jsonld-container: '@list' + x-jsonld-id: geojson:bbox ``` @@ -62,6 +85,24 @@ Links to the schema: * YAML version: [schema.yaml](https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema.json) * JSON version: [schema.json](https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/schema.yaml) + +# JSON-LD Context + +```jsonld +{ + "@context": { + "bbox": { + "@container": "@list", + "@id": "geojson:bbox" + }, + "@version": 1.1 + } +} +``` + +You can find the full JSON-LD context here: +[context.jsonld](https://opengeospatial.github.io/bblocks/annotated-schemas/geo/common/data_types/bounding_box/context.jsonld) + ## Sources * [OGC API - Features, Part 1, 7.13.2: Feature Collections Response](http://www.opengis.net/doc/IS/ogcapi-features-1/1.0#_response_4) diff --git a/generateddocs/markdown/geo/features/feature/index.md b/generateddocs/markdown/geo/features/feature/index.md index 1b5aeabe9..4b9e84ade 100644 --- a/generateddocs/markdown/geo/features/feature/index.md +++ b/generateddocs/markdown/geo/features/feature/index.md @@ -83,6 +83,8 @@ allOf: - $ref: ../../common/data_types/geojson/schema.yaml - type: object properties: + bbox: + $ref: ../../common/data_types/bounding_box/schema.yaml links: type: array items: diff --git a/generateddocs/slate-build/geo/common/data_types/bounding_box/index.html b/generateddocs/slate-build/geo/common/data_types/bounding_box/index.html index 4f914f0c1..d4dced3a7 100644 --- a/generateddocs/slate-build/geo/common/data_types/bounding_box/index.html +++ b/generateddocs/slate-build/geo/common/data_types/bounding_box/index.html @@ -294,7 +294,7 @@ - + NAV @@ -306,6 +306,7 @@ diff --git a/generateddocs/slate-build/geo/features/feature/index.html b/generateddocs/slate-build/geo/features/feature/index.html index 784d618c5..06ea2aa99 100644 --- a/generateddocs/slate-build/geo/features/feature/index.html +++ b/generateddocs/slate-build/geo/features/feature/index.html @@ -435,6 +435,8 @@

JSON Schema

- $ref: ../../common/data_types/geojson/schema.yaml
 - type: object
   properties:
+    bbox:
+      $ref: ../../common/data_types/bounding_box/schema.yaml
     links:
       type: array
       items:
diff --git a/generateddocs/slate/geo/common/data_types/bounding_box/index.html.md b/generateddocs/slate/geo/common/data_types/bounding_box/index.html.md
index dde8a0330..d29080ff0 100644
--- a/generateddocs/slate/geo/common/data_types/bounding_box/index.html.md
+++ b/generateddocs/slate/geo/common/data_types/bounding_box/index.html.md
@@ -4,6 +4,7 @@ title: Bounding Box (Schema)
 language_tabs:
   - json: JSON
   - plaintext: Plain text
+  - jsonld: JSON-LD
 
 toc_footers:
   - Version 1.0.1
@@ -28,8 +29,8 @@ The bounding box JSON object describes a simple spatial extent of a resource. Fo
     Stable
 

-