"description":"Information about the API modules available for interacting with the wiki. Depends on the extensions installed on the wiki, and may further vary with the wiki's version and configuration.",
"type":"object",
"minProperties":1,
"additionalProperties":{
"$ref":"#/definitions/Module"
}
}
},
"definitions":{
"Info":{
"description":"Information about the wiki site that offers the API",
"description":"The version of the MediaWiki software serving the document",
"type":"string"
}
}
},
"Module":{
"title":"REST API Module",
"description":"Information about a given REST module available of the wiki. Corresponds to the https://www.mediawiki.org/schema/mwapi-1.0 schema.",
"type":"object",
"required":[
"info",
"base",
"spec"
],
"properties":{
"info":{
"$ref":"#/definitions/ModuleInfo"
},
"base":{
"description":"The base path of the module, to be appended to the server URL. This may or may not be a functioning endpoint, as defined by the module's specification.",
"type":"string"
},
"spec":{
"description":"URL of the module's OpenAPI specification. The version of OpenAPI used may vary.",