This repository was archived by the owner on Jun 18, 2024. It is now read-only.
This repository was archived by the owner on Jun 18, 2024. It is now read-only.
Use conformsTo to identify data standards a dataset conforms to #362
Closed
Description
To help surface instances where data standards have already been implemented or where there is a need to identify if standards haven't yet been implemented where they should be, the conformsTo
field can be used to include a URI as a unique identifier referencing the relevant data standard. This can be used at both the dataset
level and distribution
level. It has already been proposed for use at the Catalog
level to identify the version of the Project Open Data standard being used - see #309 (comment)
conformsTo
is a Dublin Core term
If a publisher was listing their data.json file within a dataset's distribution it might look something like this:
"distribution": [
{
"description": "Data.json file for Project Open Data",
"conformsTo":"http://project-open-data.github.io/schema",
"downloadURL": "https://agency.gov/data.json",
"format": "JSON",
"mediaType": "application/json",
"title": "data.json"
}
]