-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,4 @@ | ||
# OGC Building Block template | ||
|
||
This template provides a working example of an [OGC Building Block](https:blocks.ogc.org). For more info see [the Documentation](https://ogcincubator.github.io/bblocks-docs/). | ||
|
||
This template is a working automation recipe to define, test and document a set of Building Blocks. | ||
|
||
The automation-generated documentation for this example is here: [https://opengeospatial.github.io/bblock-template/](https://opengeospatial.github.io/bblock-template/) | ||
|
||
[Examples of using this with typical applications of OGC standards](https://github.com/ogcincubator/bblocks-examples) | ||
|
||
Please replace the contents of this README with information about your Building Block(s). | ||
|
||
# How to use this template | ||
|
||
[More information on design and usage](https://github.com/opengeospatial/bblock-template/blob/master/USAGE.md) | ||
|
||
# CHEK Profiles as OGC Building Blocks | ||
|
||
This repository contains the definitions and rulesets of the validation profiles created for the | ||
[CHEK project](https://chekdbp.eu/). |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Dummy profile", | ||
"abstract": "Empty profile without rules", | ||
"status": "stable", | ||
"dateTimeAddition": "2024-11-10T00:00:00Z", | ||
"itemClass": "schema", | ||
"version": "1.0", | ||
"dateOfLastChange": "2024-11-18" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@prefix chek: <urn:chek:vocab/> . | ||
@prefix chekp: <urn:chek:profiles/> . | ||
@prefix ap: <urn:chek:profiles/ascoli-piceno/> . | ||
@prefix prof: <http://www.w3.org/ns/dx/prof/> . | ||
@prefix dct: <http://purl.org/dc/terms/> . | ||
@prefix role: <http://www.w3.org/ns/dx/prof/role/> . | ||
@prefix sh: <http://www.w3.org/ns/shacl#> . | ||
@prefix sd: <https://w3id.org/okn/o/sd#> . | ||
@prefix hydra: <http://www.w3.org/ns/hydra/core#> . | ||
|
||
chekp:dummy a prof:Profile, chekp:Profile ; | ||
dct:title "Dummy profile with no rules" ; | ||
prof:isProfileOf chekp:chek ; | ||
prof:hasToken "chek-dummy" ; | ||
dct:hasVersion "1.0" ; | ||
. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# No rules defined for this profile |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Green public spaces present", | ||
"abstract": "Profile that requires that green public spaces are present in a dataset", | ||
"status": "stable", | ||
"dateTimeAddition": "2024-11-10T00:00:00Z", | ||
"itemClass": "schema", | ||
"version": "1.0", | ||
"dateOfLastChange": "2024-11-18" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@prefix chek: <urn:chek:vocab/> . | ||
@prefix chekp: <urn:chek:profiles/> . | ||
@prefix ap: <urn:chek:profiles/ascoli-piceno/> . | ||
@prefix prof: <http://www.w3.org/ns/dx/prof/> . | ||
@prefix dct: <http://purl.org/dc/terms/> . | ||
@prefix role: <http://www.w3.org/ns/dx/prof/role/> . | ||
@prefix sh: <http://www.w3.org/ns/shacl#> . | ||
@prefix sd: <https://w3id.org/okn/o/sd#> . | ||
@prefix hydra: <http://www.w3.org/ns/hydra/core#> . | ||
|
||
chekp:green-public-spaces-present a prof:Profile, chekp:Profile ; | ||
dct:title "Green public spaces present" ; | ||
dct:description "This profile checks that green public spaces are present in at least one dataset" ; | ||
dct:hasVersion "0.1" ; | ||
prof:isProfileOf chekp:chek ; | ||
prof:hasToken "chek-green-public-spaces-present" ; | ||
prof:hasResource [ | ||
a prof:ResourceDescriptior ; | ||
prof:hasRole role:validation ; | ||
dct:format <https://w3id.org/mediatype/text/turtle> ; | ||
dct:conformsTo <https://www.w3.org/TR/shacl/> ; | ||
prof:hasArtifact <./shapes/green-public-spaces-present.shacl> ; | ||
] ; | ||
. |