Stability AI · Schema

FastUpscaleRequest

3D GenerationAIGenerative AIImage GenerationImage EditingMachine LearningStable DiffusionText to ImageVideo Generation

Properties

Name Type Description
image string The image to upscale. Must be a valid image file.
output_format string The output format of the upscaled image.
View JSON Schema on GitHub

JSON Schema

stability-ai-fastupscalerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FastUpscaleRequest",
  "title": "FastUpscaleRequest",
  "type": "object",
  "required": [
    "image"
  ],
  "properties": {
    "image": {
      "type": "string",
      "format": "binary",
      "description": "The image to upscale. Must be a valid image file."
    },
    "output_format": {
      "type": "string",
      "enum": [
        "jpeg",
        "png",
        "webp"
      ],
      "default": "png",
      "description": "The output format of the upscaled image."
    }
  }
}