{
"id": "social.octosphere.publication",
"defs": {
"main": {
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"octopusId",
"versionId",
"publicationType",
"title",
"status",
"contentHtml",
"contentText",
"citations",
"linkedTo",
"linkedFrom",
"createdAt",
"updatedAt"
],
"properties": {
"doi": {
"type": "string",
"format": "uri",
"description": "Publication version DOI URL, if present."
},
"title": {
"type": "string",
"maxLength": 1000,
"description": "Publication title."
},
"status": {
"type": "string",
"description": "Octopus publication status (expected LIVE).",
"knownValues": [
"LIVE",
"DRAFT",
"ARCHIVED"
]
},
"linkedTo": {
"type": "array",
"items": {
"type": "string"
},
"description": "Publication ids this record links to."
},
"citations": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of citation strings extracted from references."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "ISO timestamp of when the publication was created in Octopus."
},
"octopusId": {
"type": "string",
"description": "Octopus publication id (UUID)."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "ISO timestamp of when the publication was last updated in Octopus."
},
"versionId": {
"type": "string",
"description": "Octopus publication version id (UUID)."
},
"linkedFrom": {
"type": "array",
"items": {
"type": "string"
},
"description": "Publication ids that link to this record."
},
"ownerOrcid": {
"type": "string",
"description": "ORCID of the publication owner (if available)."
},
"contentHtml": {
"type": "string",
"description": "Raw HTML content body."
},
"contentText": {
"type": "string",
"description": "Plain text content for compact consumption."
},
"canonicalUrl": {
"type": "string",
"format": "uri",
"description": "Public Octopus URL for the publication version."
},
"peerReviewOf": {
"type": "string",
"description": "Publication id this peer review references, if applicable."
},
"publicationType": {
"type": "string",
"description": "Octopus publication type.",
"knownValues": [
"RESEARCH_PROBLEM",
"HYPOTHESIS",
"PROTOCOL",
"ANALYSIS",
"INTERPRETATION",
"REAL_WORLD_APPLICATION",
"DATA",
"PEER_REVIEW"
]
}
}
},
"description": "Scientific publication record bridged from Octopus.ac via Octosphere. Represents a single version of an Octopus publication."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}