The Guardian · Schema

Tag

NewsMediaContentArticlesJournalism

Properties

Name Type Description
id string Tag identifier
type string Tag type
sectionId string
sectionName string
webTitle string
webUrl string
apiUrl string
keywordType string
View JSON Schema on GitHub

JSON Schema

tag.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Tag identifier"
    },
    "type": {
      "type": "string",
      "description": "Tag type",
      "enum": [
        "keyword",
        "series",
        "contributor",
        "blog",
        "tone",
        "type",
        "newspaper-book",
        "newspaper-book-section"
      ]
    },
    "sectionId": {
      "type": "string"
    },
    "sectionName": {
      "type": "string"
    },
    "webTitle": {
      "type": "string"
    },
    "webUrl": {
      "type": "string",
      "format": "uri"
    },
    "apiUrl": {
      "type": "string",
      "format": "uri"
    },
    "keywordType": {
      "type": "string"
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Tag"
}