The Guardian · Schema

Section

NewsMediaContentArticlesJournalism

Properties

Name Type Description
id string
webTitle string
webUrl string
apiUrl string
editions array
View JSON Schema on GitHub

JSON Schema

section.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "webTitle": {
      "type": "string"
    },
    "webUrl": {
      "type": "string",
      "format": "uri"
    },
    "apiUrl": {
      "type": "string",
      "format": "uri"
    },
    "editions": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "webTitle": {
            "type": "string"
          },
          "webUrl": {
            "type": "string",
            "format": "uri"
          },
          "apiUrl": {
            "type": "string",
            "format": "uri"
          },
          "code": {
            "type": "string"
          }
        }
      }
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Section"
}