{
  "openapi": "3.1.0",
  "info": {
    "title": "Sudaco Pastel Colors & Harmonies API",
    "description": "API کاتالوگ رنگ‌های اکریلیک سوداکو، پالت‌های کودک پاستلی ترند ۲۰۲۶، آزمون کنتراست نوری و شبیه‌ساز کوررنگی",
    "version": "2026.1.0",
    "contact": {
      "name": "سوداکو و تیناب وود",
      "url": "https://sudaco-acrylic-colour-combos.ai.studio"
    }
  },
  "servers": [
    {
      "url": "https://sudaco-acrylic-colour-combos.ai.studio/api",
      "description": "Production Server"
    }
  ],
  "paths": {
    "/health": {
      "get": {
        "summary": "Health check endpoint",
        "description": "بررسی وضعیت آنلاین بودن سرویس",
        "responses": {
          "200": {
            "description": "سرویس فعال است",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": { "type": "string", "example": "ok" },
                    "timestamp": { "type": "string" },
                    "version": { "type": "string", "example": "2026.1.0" }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/colors": {
      "get": {
        "summary": "لیست کامل ۵۲ رنگ کاتالوگ اکریلیک سوداکو",
        "description": "شامل کدهای رنگی، نام فارسی و انگلیسی، کدهای ۱۲۵ میل و پاستلی",
        "responses": {
          "200": {
            "description": "فهرست رنگ‌های استاندارد",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": { "type": "string" },
                      "nameFa": { "type": "string" },
                      "nameEn": { "type": "string" },
                      "hex": { "type": "string" },
                      "category": { "type": "string" },
                      "sku": {
                        "type": "object",
                        "properties": {
                          "ml125": { "type": "string" }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/palettes": {
      "get": {
        "summary": "پالت‌های آماده کودک پاستلی و آرامش خواب ۲۰۲۶",
        "responses": {
          "200": {
            "description": "مجموعه پالت‌های استاندارد",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object"
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
