SearchDocument schema from Backstage search API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/backstage/refs/heads/main/json-schema/search-search-document-schema.json", "title": "SearchDocument", "description": "SearchDocument schema from Backstage search API", "type": "object", "properties": { "title": { "type": "string", "description": "Title of the document." }, "text": { "type": "string", "description": "Text content of the document." }, "location": { "type": "string", "description": "URL or path to the original content." } }, "required": [ "title", "text", "location" ], "additionalProperties": true }