Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
types
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pubsweet
types
Commits
802cc182
Commit
802cc182
authored
6 years ago
by
Jure
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md
parent
5122af40
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+25
-10
25 additions, 10 deletions
README.md
with
25 additions
and
10 deletions
README.md
+
25
−
10
View file @
802cc182
# Preface:
-
All groups of users are modelled with Teams
-
All models have non-semantic 'created' and 'updated' dates
-
All dates are ISO-8601 strings, as JATS allows
for this
.
-
All dates are ISO-8601 strings, as
PostgreSQL recommends this as date input and
JATS allows
it
.
# Removed:
## Journal.owners
The owners relationship is non-core/non-semantic and can be modelled with Teams if needed. As such, it will be deprecated/removed.
## Article.originalSubmissionDate
Original submission date is the first versions's submission date, and isn't needed on the container model.
## ArticleVersion.meta.contributors.middleName
JATS recommends using
<given-names>
elements instead
# Models
## Journal (Collection)
```
id: ID!
journalTitle: String! // JATS uses <journal-title> element
articles: [ID] // ??
...
...
@@ -24,15 +16,19 @@ meta: JournalMetadata {
publisherName: String // JATS uses <publisher-name> element
issn: String // JATS uses <issn> element
}
```
## Article (Fragment)
```
id: ID!
journalId: ID! // Link to Journal
versions: [ID!] // Link to Versions
```
## ArticleVersion
```
id: ID!
submissionDate: String // date
status: String
...
...
@@ -52,26 +48,32 @@ meta: ArticleMetadata {
authorNote: String
publicationDate: String // date
}
```
// Decision
```
status: String // e.g. 'accept'
submissionDate: String // date
content: String
files: [String]
userId: Id // Link to the editor's user
```
// Reviewer
```
invitationDate: String // date
review: ID // Link to Review
accepted: Boolean
responseDate: String // date
userId: ID
reminders: [String] // dates
```
// Review
```
id: ID!
versionId: ID! // Link to Version
reviewerId: ID! // Link to Reviewer
...
...
@@ -85,6 +87,19 @@ recommendation: Recommendation {
}
}
submissionDate: String // date
```
# Removed
## Journal.owners
The owners relationship is non-core/non-semantic and can be modelled with Teams if needed. As such, it will be deprecated/removed.
## Article.originalSubmissionDate
Original submission date is the first versions's submission date, and isn't needed on the container model.
## ArticleVersion.meta.contributors.middleName
JATS recommends using
<given-names>
elements instead
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment