result

result schema from Wikimedia REST API

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
itemType string
title string
url string
View JSON Schema on GitHub

JSON Schema

rest-v1-result-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-result-schema.json",
  "title": "result",
  "description": "result schema from Wikimedia REST API",
  "type": "object",
  "properties": {
    "itemType": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "required": [
    "title",
    "url",
    "itemType"
  ]
}