Wikimedia · Schema

link

Schema for link from the Wikimedia Enterprise API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

Properties

Name Type Description
url string
text string
images array
View JSON Schema on GitHub

JSON Schema

link.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/link.json",
  "title": "link",
  "description": "Schema for link from the Wikimedia Enterprise API",
  "type": "object",
  "properties": {
    "url": {
      "type": "string"
    },
    "text": {
      "type": "string"
    },
    "images": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/image"
      }
    }
  }
}