arXiv · JSON Structure

Arxiv Article Structure

JSON Structure representation of an arXiv Article entity.

Type: object Properties: 14 Required: 6
Science And MathScholarly PublishingPreprintsOpen AccessResearchOpen SourcePublic APIs

Article is a JSON Structure definition published by arXiv, describing 14 properties, of which 6 are required. It conforms to the https://json-structure.org/draft/v0/schema meta-schema.

Properties

id arxiv_id title summary published updated authors categories primary_category comment journal_ref doi links license

Meta-schema: https://json-structure.org/draft/v0/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/v0/schema",
  "$id": "https://api-evangelist.github.io/arxiv/json-structure/arxiv-article-structure.json",
  "name": "Article",
  "type": "object",
  "description": "JSON Structure representation of an arXiv Article entity.",
  "properties": {
    "id": { "type": "string", "description": "Canonical abstract URL" },
    "arxiv_id": { "type": "string", "description": "Bare arXiv identifier" },
    "title": { "type": "string" },
    "summary": { "type": "string", "description": "Abstract text" },
    "published": { "type": "string", "format": "date-time" },
    "updated": { "type": "string", "format": "date-time" },
    "authors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "affiliation": { "type": "string" }
        }
      }
    },
    "categories": {
      "type": "array",
      "items": { "type": "string" }
    },
    "primary_category": { "type": "string" },
    "comment": { "type": "string" },
    "journal_ref": { "type": "string" },
    "doi": { "type": "string" },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "href": { "type": "string" },
          "rel": { "type": "string" },
          "type": { "type": "string" },
          "title": { "type": "string" }
        }
      }
    },
    "license": { "type": "string" }
  },
  "required": ["id", "title", "summary", "authors", "primary_category", "published"]
}