{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TargetLag", "title": "TargetLag", "type": "object", "description": "Specifies the schedule for periodically refreshing the dynamic table.", "properties": { "type": { "description": "Type of lag, can be either USER_DEFINED or DOWNSTREAM.", "type": "string" } }, "discriminator": { "propertyName": "type", "mapping": { "USER_DEFINED": "UserDefinedLag", "DOWNSTREAM": "DownstreamLag" } } }