{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://wanapis.com/schemas/ImageRequest.json", "title": "ImageGenerationRequest", "description": "OpenAI-compatible image generation request accepted by POST https://api.wanapis.com/v1/images/generations.", "type": "object", "required": ["model", "prompt"], "properties": { "model": { "type": "string" }, "prompt": { "type": "string" }, "n": { "type": "integer", "minimum": 1, "default": 1 }, "size": { "type": "string", "description": "e.g. 1024x1024" }, "quality": { "type": "string", "enum": ["standard", "hd"] }, "style": { "type": "string", "enum": ["vivid", "natural"] }, "response_format": { "type": "string", "enum": ["url", "b64_json"] }, "user": { "type": "string" } } }