Skip to content

Commit

Permalink
pkp/pkp-lib#4787 submission schema update to handle reviewer suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
touhidurabir committed Dec 24, 2024
1 parent 8e3c345 commit 43f4046
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions schemas/submission.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,49 @@
"type": "integer"
},
"familyName" : {
"type": "string"
"type": "string",
"multilingual": true,
"apiSummary": true
},
"givenName": {
"type": "string"
"type": "string",
"multilingual": true,
"apiSummary": true
},
"fullName": {
"type": "string",
"multilingual": true,
"apiSummary": true
},
"email": {
"type": "string"
"type": "string",
"apiSummary": true
},
"orcidId": {
"type": "string",
"apiSummary": true,
"validation": [
"nullable"
]
},
"suggestionReason": {
"type": "string"
"type": "string",
"multilingual": true,
"apiSummary": true
},
"affiliation" : {
"type": "string",
"multilingual": true,
"apiSummary": true
},
"approvedAt": {
"type": "string",
"apiSummary": true,
"description": "The date suggestion was approved as reviewer.",
"validation": [
"nullable",
"date:Y-m-d H:i:s"
]
}
}
}
Expand Down

0 comments on commit 43f4046

Please sign in to comment.