{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/dryad/refs/heads/main/json-schema/dc_metadata.json", "title": "Dc Metadata", "type": "object", "properties": { "title": { "type": "string" }, "authors": { "type": "array", "items": { "$ref": "#/components/schemas/author" } }, "abstract": { "type": "string", "description": "An abstract introducing the dataset." }, "funders": { "type": "array", "items": { "$ref": "#/components/schemas/funder" } }, "keywords": { "type": "array", "items": { "type": "string" } }, "fieldOfScience": { "type": "string", "description": "A term from the FOS (Fields of Science and Technology) controlled vocabulary. The main category of the dataset." }, "hsiStatement": { "type": "string", "description": "A statement explaining the de-identification of any human subject data in the dataset." }, "methods": { "type": "string", "description": "The methods by which the data was produced. Not required for publication." }, "usageNotes": { "type": "string", "description": "Usage notes for the dataset (Deprecated; It is preferred for this content to appear in the README file for the dataset). If the dataset has been retracted, the retraction statement will appear here." }, "locations": { "type": "array", "items": { "$ref": "#/components/schemas/geolocation" } }, "relatedWorks": { "type": "array", "items": { "$ref": "#/components/schemas/relatedWork" } } }, "required": [ "title", "authors", "abstract" ] }