# social.octosphere.publication

> Published by [andreasthinks.me](https://lexicon.garden/identity/did:plc:j5c7tjpwzeqtspmeyviq2eag)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:j5c7tjpwzeqtspmeyviq2eag/social.octosphere.publication)
- [Documentation](https://lexicon.garden/lexicon/did:plc:j5c7tjpwzeqtspmeyviq2eag/social.octosphere.publication/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:j5c7tjpwzeqtspmeyviq2eag/social.octosphere.publication/examples)

## Definitions

### `social.octosphere.publication`

**Type**: `record`

Scientific publication record bridged from Octopus.ac via Octosphere. Represents a single version of an Octopus publication.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `doi` | `string` (uri) | No | Publication version DOI URL, if present. |
| `title` | `string` | Yes | Publication title. |
| `status` | `string` | Yes | Octopus publication status (expected LIVE). |
| `linkedTo` | `array` | Yes | Publication ids this record links to. |
| `citations` | `array` | Yes | List of citation strings extracted from references. |
| `createdAt` | `string` (datetime) | Yes | ISO timestamp of when the publication was created in Octopus. |
| `octopusId` | `string` | Yes | Octopus publication id (UUID). |
| `updatedAt` | `string` (datetime) | Yes | ISO timestamp of when the publication was last updated in Octopus. |
| `versionId` | `string` | Yes | Octopus publication version id (UUID). |
| `linkedFrom` | `array` | Yes | Publication ids that link to this record. |
| `ownerOrcid` | `string` | No | ORCID of the publication owner (if available). |
| `contentHtml` | `string` | Yes | Raw HTML content body. |
| `contentText` | `string` | Yes | Plain text content for compact consumption. |
| `canonicalUrl` | `string` (uri) | No | Public Octopus URL for the publication version. |
| `peerReviewOf` | `string` | No | Publication id this peer review references, if applicable. |
| `publicationType` | `string` | Yes | Octopus publication type. |

## Raw Schema

```json
{
  "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
}
```
