wiki.techinc.nl/includes/Rest/Handler/Schema/SearchResults.json
Wendy Quarshie 87b34ec850 REST: JSON schema definitions for additional response bodies
Bug: T376603
Depends-On: I4193b9be4516717c7ce423131370a7d0b6ea8962
Change-Id: Ic2d9471ad446eb5f9d5e7072f1ef93f7196a20f8
2025-07-15 11:40:08 +01:00

84 lines
2.1 KiB
JSON

{
"description": "Search results",
"required": [
"pages"
],
"properties": {
"pages": {
"type": "array",
"description": "List of search result pages",
"items": {
"type": "object",
"required": [
"id",
"key",
"title",
"excerpt",
"matched_title",
"description",
"thumbnail"
],
"properties": {
"id": {
"type": "integer",
"description": "Page identifier"
},
"key": {
"type": "string",
"description": "Page title in URL-friendly format"
},
"title": {
"type": "string",
"description": "Page title in reading-friendly format"
},
"excerpt": {
"type": "string",
"description": "Excerpt of the page content matching the search query"
},
"matched_title": {
"type": "string",
"nullable": true,
"description": "The title of a page redirection from, if applicable, or null"
},
"description": {
"type": "string",
"nullable": true,
"description": "Short summary of the page topic or null if no summary exists."
},
"thumbnail": {
"type": "object",
"nullable": true,
"description": "Information about the thumbnail image for the page, or null if no thumbnail exists.",
"properties": {
"mimetype": {
"type": "string",
"description": "The file type"
},
"width": {
"type": "integer",
"nullable": true,
"description": "Maximum recommended image width in pixels or null if not available"
},
"height": {
"type": "integer",
"nullable": true,
"description": "Maximum recommended image height in pixels or null if not available"
},
"duration": {
"type": "number",
"nullable": true,
"description": "The length of the video, audio, or multimedia file or null for other media types"
},
"url": {
"type": "string",
"format": "uri",
"description": "URL to download the file"
}
},
"required": [ "mimetype", "width", "height", "duration", "url" ]
}
}
}
}
}
}