General
Publishers
Developers
Search your datasets
You can enter a search term to filter your organisation's datasets in the Data Marketplace.
GET
/cataloged-resources
Parameters
- filter
-
string
This is your search term. The system will look for matches against these fields:
- title
- keywords
- supplier identifier
Responses
200
Success
application/json
array
(max items 1000)
- title
-
string
The full and formal name given to an information resource. A name given to the distribution.
- type
-
string
Topic: A controlled term that expresses the broad topical content of an information resource. Subject: A controlled term that expresses a topic of the intellectual content of an information resource.
- accessRights
-
string
A rights statement that concerns how the distribution is accessed.
- contactPoint
-
array of objects
Contact information
- created
-
date time string
- creator
-
string
The organisation responsible for creating the catalogued resource.
- description
-
string
A concise narrative of the content of an catalogued resource.
- identifier
-
string
A unique number, code, or reference value assigned to a catalogued resource within the catalogue.
- issued
-
date time string
- license
-
object
A legal document under which the resource is made available.
- keyword
-
array of strings
Uncontrolled terms (words or phrases) assigned to describe an information resource.
- modified
-
date time string
- publisher
-
string
The entity responsible for making the catalogued resource publicly available.
- securityClassification
-
string
An information security designation that identifies the minimum level of protection assigned to an information resource.
- status
-
string
Lifecycle status of resource within catalogue
- supplierIdentifier
-
string
A unique number, code, or reference value assigned to a catalogued resource a third party (supplier's) system.
- theme
-
array of strings
Topic: A controlled term that expresses the broad topical content of an information resource. Subject: A controlled term that expresses a topic of the intellectual content of an information resource.
Examples
cataloged-resources were returned by the query.
[
{
"identifier": "8d085327-21b6-4d8b-9705-88faad231d22",
"supplierIdentifier": "acme-123",
"modified": "2024-12-16T00:00:00Z",
"status": "Published",
"title": "Advance Passenger Information",
"description": "Travel data and personal data given to airlines by passenger. API covers both inbound and outbound air passengers. API includes the passenger’s full name, nationality, date of birth, gender and travel document number, type and country of issue.The data does not include those arriving by sea or rail routes, by private aircraft or via the Common Travel Area (CTA).",
"type": "Data Set",
"theme": [
"Transport and infrastructure",
"Population and society"
],
"keyword": [
"Air travel",
"Passport",
"Airports",
"leaving UK",
"entering UK"
],
"contactPoint": [
{
"name": "Rob Nichols",
"email": "robert.nichols@digital.cabinet-office.gov.uk",
"role": "contact"
}
],
"license": "Microsoft.OpenApi.Any.OpenApiObject",
"publisher": "academy-for-social-justice",
"securityClassification": "OFFICIAL",
"accessRights": "OPEN",
"distribution": [
{
"title": "CSV download",
"description": "Complete dataset provided as a downloadable file",
"accessService": [
"8d085327-21b6-4d8b-9705-88faad231d23"
],
"downloadURL": "http://example.com/path/to/file.csv",
"format": "CSV file",
"mediaType": [
"text/csv"
]
},
{
"title": "Rest API",
"accessURL": "http://example.com/api/",
"description": "A fully queryable REST API with JSON and XML output",
"format": "API"
},
{
"title": "Web Page",
"description": "A web page that provides the data, links to downloads, or documentation.",
"downloadURL": "http://example.com/path/to/page",
"format": "Web page",
"mediaType": [
"text/html"
]
}
]
}
];
No cataloged-resources were returned by this query.
[];