ImageFile

Contains an image file.

Asset ManagementIndustrial IoTIoTTime Series Data

Properties

Name Type Description
data object
type object
View JSON Schema on GitHub

JSON Schema

iot-sitewise-image-file-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-image-file-schema.json",
  "title": "ImageFile",
  "description": "Contains an image file.",
  "type": "object",
  "properties": {
    "data": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageFileData"
        },
        {
          "description": "The image file contents, represented as a base64-encoded string. The file size must be less than 1 MB."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageFileType"
        },
        {
          "description": "The file type of the image."
        }
      ]
    }
  },
  "required": [
    "data",
    "type"
  ]
}