Wikipedia / MediaWiki · JSON Structure

Rest V1 List Read Structure

list_read schema from Wikimedia REST API

Type: object Properties: 5 Required: 4
Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

list_read is a JSON Structure definition published by Wikipedia / MediaWiki, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name description created updated

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-structure/rest-v1-list-read-structure.json",
  "name": "list_read",
  "description": "list_read schema from Wikimedia REST API",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "example": 42
    },
    "name": {
      "type": "string",
      "example": "Planets"
    },
    "description": {
      "type": "string",
      "example": "Planets of the Solar System"
    },
    "created": {
      "type": "datetime",
      "description": "Creation date (in ISO 8601)"
    },
    "updated": {
      "type": "datetime",
      "description": "Last modification date (in ISO 8601)"
    }
  },
  "required": [
    "id",
    "name",
    "created",
    "updated"
  ]
}