Skip to content

Instantly share code, notes, and snippets.

@phochste
Created February 24, 2024 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phochste/7b9aa2cec56f2f2b371e7193fcb6a59c to your computer and use it in GitHub Desktop.
Save phochste/7b9aa2cec56f2f2b371e7193fcb6a59c to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$id": "https://signposting.org/authorIDy/schema.json",
"title": "authorIDy",
"description": "An authorIDy response body",
"type": "object",
"properties": {
"contributor" : {
"description": "contributor identifier URI",
"type": "string"
},
"contributions" : {
"description": "list of entries, one entry per contribution",
"type": "array",
"items": {
"type": "object",
"properties": {
"contribution-page" : {
"description": "URI of contribution, e.g. landing page URI",
"type": "string"
},
"accession-date" : {
"description": "repository accession date",
"type": "string",
"pattern": "\\d{4}-[01]\\d-[0-3]\\d"
},
"publication-date": {
"description": "publication date",
"type": "string",
"pattern": "\\d{4}"
},
"cite-as": {
"description": "persistent identifier URI (redirects to landing page URI)",
"type": "string",
"pattern": "http(s)?://.*"
},
"contributor-type": {
"description": "contributor type URI from vocabulary, e.g. https://credit.niso.org/",
"type": "array",
"items": {
"type": "string"
}
},
"contribution-type": {
"description": "contribution type URI from vocabulary, e.g. https://vocabularies.coar-repositories.org/resource_types/",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [ "contribution-page", "accession-date"]
},
"minItems": 1
}
},
"required": [ "contributor", "contributions" ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment