Wikimedia · Schema

problem

Schema for problem from the Wikimedia REST API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

Properties

Name Type Description
type string
title string
detail string
instance string
View JSON Schema on GitHub

JSON Schema

problem.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/problem.json",
  "title": "problem",
  "description": "Schema for problem from the Wikimedia REST API",
  "required": [
    "type"
  ],
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "detail": {
      "type": "string"
    },
    "instance": {
      "type": "string"
    }
  }
}