Microsoft Azure · Schema

generateImagesResponse

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
created integer The unix timestamp when the operation was created.
data array The result data of the operation, if successful
View JSON Schema on GitHub

JSON Schema

microsoft-azure-generateimagesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/generateImagesResponse",
  "title": "generateImagesResponse",
  "type": "object",
  "properties": {
    "created": {
      "type": "integer",
      "format": "unixtime",
      "description": "The unix timestamp when the operation was created.",
      "example": "1676540381"
    },
    "data": {
      "type": "array",
      "description": "The result data of the operation, if successful",
      "items": {
        "$ref": "#/components/schemas/imageResult"
      }
    }
  },
  "required": [
    "created",
    "data"
  ]
}