Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

detail author info following another schema #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 24 additions & 5 deletions article-authoring-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,30 @@
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The full name of an author."
},
"affiliation": {
"ORCID": {
"type": "string",
"format": "uri",
"description": "The Open Research Contributor Identifier (ORCID) is a persistent and unique digital ID for scientific and other academic authors and contributors.",
"pattern": "https:\\/\\/orcid\\.org\\/0000-000[0-9]{1}-[0-9]{4}-[0-9]{4}"
},
"familyName": {
"type": "string",
"description": "Last name of a person."
},
"givenName": {
"type": "string",
"description": "First name of a person."
},
"middleName": {
"type": "string",
"description": "Middle name of a person."
},
"email": {
"type": "string",
"format": "email",
"description": "Email address of a person or organization."
},
"affiliation": {
"oneOf": [
{"type": "string"},
{"type": "number"}
Expand Down