listing

The result format for listings

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
items array
_links object
View JSON Schema on GitHub

JSON Schema

rest-v1-listing-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-schema/rest-v1-listing-schema.json",
  "title": "listing",
  "description": "The result format for listings",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "_links": {
      "type": "object",
      "properties": {
        "next": {
          "type": "object",
          "properties": {
            "href": {
              "type": "string",
              "description": "Relative link to next result page."
            }
          }
        }
      }
    }
  },
  "required": [
    "items"
  ]
}