{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Lookup", "title": "Lookup", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the lookup" }, "type": { "type": "string", "description": "The lookup type such as file or database" }, "fileInfo": { "type": "object", "description": "File-based lookup metadata", "properties": { "filename": { "type": "string", "description": "The lookup filename" }, "size": { "type": "integer", "description": "The file size in bytes" } } }, "description": { "type": "string", "description": "A human-readable description of the lookup" } } }