Microsoft Azure · Schema

ImageGenerationsResponse

Response from the image generations API.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
created integer The Unix timestamp of when the images were created.
data array The list of generated images.
View JSON Schema on GitHub

JSON Schema

azure-openai-service-image-generations-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ImageGenerationsResponse",
  "type": "object",
  "description": "Response from the image generations API.",
  "properties": {
    "created": {
      "type": "integer",
      "description": "The Unix timestamp of when the images were created."
    },
    "data": {
      "type": "array",
      "description": "The list of generated images."
    }
  }
}