{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CachedQuery", "title": "CachedQuery", "allOf": [ { "$ref": "#/components/schemas/CachedQueryDefinition" }, { "type": "object", "properties": { "query_name": { "type": "string" }, "last_modified_date": { "type": "string", "format": "date-time" }, "run_information": { "type": "object", "additionalProperties": true } } } ] }