Skip to content

Commit

Permalink
Merge pull request #24 from co-cddo/update-following-repo-name-change
Browse files Browse the repository at this point in the history
Update following repo name change
  • Loading branch information
RobNicholsGDS authored Oct 15, 2024
2 parents 8cc77eb + d3845c9 commit 1b249b5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

The Data Marketplace
====================
Data Catalogue Metadata
=======================

This repository stores objects (JSON Schema) that are used to define the structure of objects passed to and from the Data
Marketplace and the API specification for the interface through which the objects will be transported.
This repository stores objects (JSON Schema) that are used to define the structure of objects passed to and from Data Catalogues
such as the Data Marketplace and the API specification for the interface through which the objects will be transported.

JSON Schema
-----------

A JSON Schema provides a computer readable description of a metadata data object. The project’s schema can be compared to a JSON
representation of a Data Marketplace resource’s metadata with the output being a report describing the discrepancies between the
representation of a Data Catalogue's resource’s metadata with the output being a report describing the discrepancies between the
two. This allows the schema to be used to validate metadata records.

Due to the straightforward structure of JSON the description can also be read by people such that it is also a useful tool to aid
Expand Down
2 changes: 1 addition & 1 deletion schema/catalogued_resource_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
},
"modified": {
"description": "The date on which the data was created or last updated.",
"$ref": "./../schema/shared_schema.json#/schemas/dateOrDateTime"
"$ref": "https://co-cddo.github.io/data-catalogue-metadata/schema/shared_schema.json#/schemas/dateOrDateTime"
},
"publisher": {
"description": "The entity responsible for making the catalogued resource publicly available.",
Expand Down
2 changes: 1 addition & 1 deletion schema/data_group_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"$id": "schemas/dataGroup",
"description": "Metadata schema for a Data group",
"type": "object",
"$ref": "./../schema/catalogued_resource_schema.json",
"$ref": "https://co-cddo.github.io/data-catalogue-metadata/schema/catalogued_resource_schema.json",
"properties": {
"endpointDescription": {
"description": "A description of the services available via the end-points, including their operations, parameters etc.",
Expand Down
2 changes: 1 addition & 1 deletion schema/data_service_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"$id": "schemas/dataService",
"description": "Metadata schema for a Data Service",
"type": "object",
"$ref": "./../schema/catalogued_resource_schema.json",
"$ref": "https://co-cddo.github.io/data-catalogue-metadata/schema/catalogued_resource_schema.json",
"properties": {
"apiType": {
"description": "The API type.",
Expand Down
2 changes: 1 addition & 1 deletion schema/data_share_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"$id": "schemas/dataShare",
"description": "Metadata schema for a Data Share",
"type": "object",
"$ref": "./../schema/catalogued_resource_schema.json",
"$ref": "https://co-cddo.github.io/data-catalogue-metadata/schema/catalogued_resource_schema.json",
"properties": {
"relatedResource": {
"description": "The identifier of a catalogued resource that is the target of this share request",
Expand Down
4 changes: 2 additions & 2 deletions schema/dataset_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"$id": "schemas/dataset",
"description": "Metadata schema for a Dataset",
"type": "object",
"$ref": "./../schema/catalogued_resource_schema.json",
"$ref": "https://co-cddo.github.io/data-catalogue-metadata/schema/catalogued_resource_schema.json",
"properties": {
"distribution": {
"description": "A collection of distributions",
Expand Down Expand Up @@ -39,7 +39,7 @@
},
"issued": {
"description": "The date the data was issued.",
"$ref": "./../schema/shared_schema.json#/schemas/dateOrDateTime"
"$ref": "https://co-cddo.github.io/data-catalogue-metadata/schema/shared_schema.json#/schemas/dateOrDateTime"
},
"updateFrequency": {
"description": "The schedule for how often the data is updated",
Expand Down

0 comments on commit 1b249b5

Please sign in to comment.