pub.chive.eprint.citation

chive.pub

Documentation

User-curated citation linking an eprint to a cited work

main record

User-curated citation linking an eprint to a cited work

Record Key tid Timestamp-based ID

Properties

citationType string Optional

Semantic type of the citation relationship

Known values: cites, extends, refutes, reviews, uses-data, uses-method
citedWork ref #citedWork Required

No description available.

context string Optional

Contextual note explaining the citation

maxLength: 1000 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

eprintUri string at-uri Required

AT-URI of the eprint that cites this work

schemaRevision integer Optional

Schema revision this record was created with. Absent means revision 1.

minimum: 1
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "eprintUri",
      "citedWork",
      "createdAt"
    ],
    "properties": {
      "context": {
        "type": "string",
        "maxLength": 1000,
        "description": "Contextual note explaining the citation"
      },
      "citedWork": {
        "ref": "#citedWork",
        "type": "ref"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "eprintUri": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the eprint that cites this work"
      },
      "citationType": {
        "type": "string",
        "description": "Semantic type of the citation relationship",
        "knownValues": [
          "cites",
          "extends",
          "refutes",
          "reviews",
          "uses-data",
          "uses-method"
        ]
      },
      "schemaRevision": {
        "type": "integer",
        "minimum": 1,
        "description": "Schema revision this record was created with. Absent means revision 1."
      }
    }
  },
  "description": "User-curated citation linking an eprint to a cited work"
}
citedWork object

No description available.

Properties

arxivId string Optional

arXiv identifier of the cited work

maxLength: 50 bytes
authors array of string Optional

Author names of the cited work

maxLength: 50 items
chiveUri string at-uri Optional

AT-URI of the cited work if it exists in Chive

doi string Optional

DOI of the cited work

maxLength: 200 bytes
title string Required

Title of the cited work

maxLength: 1000 bytes
url string uri Optional

URL of the cited work

maxLength: 1000 bytes
venue string Optional

Publication venue (journal or conference)

maxLength: 500 bytes
year integer Optional

Publication year of the cited work

View raw schema
{
  "type": "object",
  "required": [
    "title"
  ],
  "properties": {
    "doi": {
      "type": "string",
      "maxLength": 200,
      "description": "DOI of the cited work"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "maxLength": 1000,
      "description": "URL of the cited work"
    },
    "year": {
      "type": "integer",
      "description": "Publication year of the cited work"
    },
    "title": {
      "type": "string",
      "maxLength": 1000,
      "description": "Title of the cited work"
    },
    "venue": {
      "type": "string",
      "maxLength": 500,
      "description": "Publication venue (journal or conference)"
    },
    "arxivId": {
      "type": "string",
      "maxLength": 50,
      "description": "arXiv identifier of the cited work"
    },
    "authors": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 200
      },
      "maxLength": 50,
      "description": "Author names of the cited work"
    },
    "chiveUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the cited work if it exists in Chive"
    }
  }
}

Lexicon Garden

@