Response containing Galileo AI highlights status and results.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HighlightsResponse", "title": "HighlightsResponse", "type": "object", "description": "Response containing Galileo AI highlights status and results.", "properties": { "requestID": { "type": "string", "description": "Unique identifier for the highlights request." }, "appID": { "type": "string", "description": "The application ID associated with the request." }, "status": { "type": "string", "description": "Current status of the highlights generation.", "enum": [ "PENDING", "COMPLETE", "FAILED" ] }, "result": { "description": "The highlights result, or null if still pending.", "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/HighlightsResult" } ] } } }