The New York Times Company · JSON Structure

Article Structure

Type: object Properties: 14 Required: 2
NewsMediaPublishingNewspapersArticlesBooksMoviesSportsGamesCookingReviewsSearchSemanticTaggingControlled VocabularyGeographicArchive

Article Structure is a JSON Structure definition published by The New York Times Company, describing 14 properties, of which 2 are required. It conforms to the https://json-structure.org/draft/2024/schema meta-schema.

Properties

uri url section subsection title abstract byline published_date updated_date des_facet org_facet per_facet geo_facet multimedia

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2024/schema",
  "$id": "https://api-evangelist.github.io/new-york-times-company/json-structure/article-structure.json",
  "title": "NYT Article Structure",
  "type": "object",
  "properties": {
    "uri": {"type": "string"},
    "url": {"type": "uri"},
    "section": {"type": "string"},
    "subsection": {"type": "string"},
    "title": {"type": "string"},
    "abstract": {"type": "string"},
    "byline": {"type": "string"},
    "published_date": {"type": "datetime"},
    "updated_date": {"type": "datetime"},
    "des_facet": {"type": "array", "items": {"type": "string"}},
    "org_facet": {"type": "array", "items": {"type": "string"}},
    "per_facet": {"type": "array", "items": {"type": "string"}},
    "geo_facet": {"type": "array", "items": {"type": "string"}},
    "multimedia": {"type": "array", "items": {"$ref": "media-structure.json"}}
  },
  "required": ["url", "title"]
}