InterpolationParameters

An object that specifies how to interpolate data in a list.

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
interpolationType object
intervalInSeconds object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-interpolation-parameters-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}