{ "$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" ] }