{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CachedSummary", "title": "CachedSummary", "type": "object", "properties": { "trace_id": { "type": "string" }, "title": { "type": "string" }, "cached": { "type": "boolean", "default": true } }, "required": [ "title", "trace_id" ] }