{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-interpolation-parameters-schema.json", "title": "InterpolationParameters", "description": "An object that specifies how to interpolate data in a list.", "type": "object", "properties": { "interpolationType": { "allOf": [ { "$ref": "#/components/schemas/InterpolationType" }, { "description": "The interpolation type." } ] }, "intervalInSeconds": { "allOf": [ { "$ref": "#/components/schemas/IntervalInSeconds" }, { "description": "The interpolation time interval in seconds." } ] } } }