User-curated related paper link between eprints
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Description of how the eprints are related
maxLength: 500 byteseprintUri
string
at-uri
Required
AT-URI of the source eprint
relatedUri
string
at-uri
Required
AT-URI of the related eprint
relationType
string
Required
Type of relationship between the two eprints
Known values:
related, extends, replicates, contradicts, reviews, is-supplement-toschemaRevision
integer
Optional
Schema revision this record was created with. Absent means revision 1.
minimum: 1View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"eprintUri",
"relatedUri",
"relationType",
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime"
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the source eprint"
},
"relatedUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the related eprint"
},
"description": {
"type": "string",
"maxLength": 500,
"description": "Description of how the eprints are related"
},
"relationType": {
"type": "string",
"description": "Type of relationship between the two eprints",
"knownValues": [
"related",
"extends",
"replicates",
"contradicts",
"reviews",
"is-supplement-to"
]
},
"schemaRevision": {
"type": "integer",
"minimum": 1,
"description": "Schema revision this record was created with. Absent means revision 1."
}
}
},
"description": "User-curated related paper link between eprints"
}