NYT Tag

Tag from the NYT controlled vocabulary, ranked Times-Topics term with dictionary suffix in parentheses.

NewsMediaPublishingNewspapersArticlesBooksMoviesSportsGamesCookingReviewsSearchSemanticTaggingControlled VocabularyGeographicArchive

Properties

Name Type Description
label string Display label including dictionary suffix, e.g. 'Obama, Barack (Per)'.
dictionary string
View JSON Schema on GitHub

JSON Schema

tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/new-york-times-company/json-schema/tag-schema.json",
  "title": "NYT Tag",
  "description": "Tag from the NYT controlled vocabulary, ranked Times-Topics term with dictionary suffix in parentheses.",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "description": "Display label including dictionary suffix, e.g. 'Obama, Barack (Per)'."
    },
    "dictionary": {
      "type": "string",
      "enum": ["Des", "Geo", "Org", "Per"]
    }
  },
  "required": ["label"]
}