Stability AI · Schema

Generate3DResponse

3D GenerationAIGenerative AIImage GenerationImage EditingMachine LearningStable DiffusionText to ImageVideo Generation

Properties

Name Type Description
model string Base64-encoded GLB model data when Accept header is set to application/json.
finish_reason string The reason the generation finished.
View JSON Schema on GitHub

JSON Schema

stability-ai-generate3dresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Generate3DResponse",
  "title": "Generate3DResponse",
  "type": "object",
  "properties": {
    "model": {
      "type": "string",
      "description": "Base64-encoded GLB model data when Accept header is set to application/json."
    },
    "finish_reason": {
      "type": "string",
      "enum": [
        "SUCCESS",
        "CONTENT_FILTERED"
      ],
      "description": "The reason the generation finished."
    }
  }
}