Cardiff University · Schema
Publication
A research publication recorded in Cardiff University's repository, as returned by the Publications API. Uses RIOXX2 metadata fields.
EducationHigher EducationUniversityUnited KingdomWalesOpen DataCoursesResearch
Properties
| Name | Type | Description |
|---|---|---|
| eprintid | string | EPrints repository identifier. |
| eprint_status | string | |
| title | string | Publication title. |
| type | string | Publication type. |
| date | string | |
| date_type | string | |
| publication | string | |
| publisher | string | |
| volume | string | |
| pagerange | string | |
| id_number | string | Identifier such as DOI. |
| uri | string | Repository URI for the publication. |
| official_url | string | |
| coversheet | string | |
| full_text_status | string | |
| sword_depositor | string | |
| harvardReference | array | Harvard-format citation lines. |
| rioxx2_title | string | |
| rioxx2_type | string | |
| rioxx2_version | string | |
| rioxx2_version_of_record | string | |
| rioxx2_format | string | |
| rioxx2_identifier | string | |
| rioxx2_publisher | string | |
| rioxx2_publication_date | string | |
| rioxx2_publication_datec | string | |
| rioxx2_source | string | |
| rioxx2_description | string | |
| rioxx2_author | array | |
| rioxx2_free_to_read | object | |
| rioxx2_license_ref | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/cardiff/refs/heads/main/json-schema/cardiff-publication-schema.json",
"title": "Publication",
"description": "A research publication recorded in Cardiff University's repository, as returned by the Publications API. Uses RIOXX2 metadata fields.",
"type": "object",
"required": ["eprintid", "title"],
"properties": {
"eprintid": { "type": "string", "description": "EPrints repository identifier." },
"eprint_status": { "type": "string" },
"title": { "type": "string", "description": "Publication title." },
"type": { "type": "string", "description": "Publication type." },
"date": { "type": "string" },
"date_type": { "type": "string" },
"publication": { "type": "string" },
"publisher": { "type": "string" },
"volume": { "type": "string" },
"pagerange": { "type": "string" },
"id_number": { "type": "string", "description": "Identifier such as DOI." },
"uri": { "type": "string", "description": "Repository URI for the publication." },
"official_url": { "type": "string" },
"coversheet": { "type": "string" },
"full_text_status": { "type": "string" },
"sword_depositor": { "type": "string" },
"harvardReference": {
"type": "array",
"items": { "type": "string" },
"description": "Harvard-format citation lines."
},
"rioxx2_title": { "type": "string" },
"rioxx2_type": { "type": "string" },
"rioxx2_version": { "type": "string" },
"rioxx2_version_of_record": { "type": "string" },
"rioxx2_format": { "type": "string" },
"rioxx2_identifier": { "type": "string" },
"rioxx2_publisher": { "type": "string" },
"rioxx2_publication_date": { "type": "string" },
"rioxx2_publication_datec": { "type": "string" },
"rioxx2_source": { "type": "string" },
"rioxx2_description": { "type": "string" },
"rioxx2_author": {
"type": "array",
"items": {
"type": "object",
"properties": {
"author": { "type": "string" }
}
}
},
"rioxx2_free_to_read": {
"type": "object",
"properties": {
"free_to_read": { "type": "string" }
}
},
"rioxx2_license_ref": {
"type": "object",
"properties": {
"license_ref": { "type": "string" },
"start_date": { "type": "string" }
}
}
}
}