{
  "openapi": "3.0.3",
  "info": {
    "title": "Idea2Code API — Atomos Technologies",
    "description": "Production REST API for Idea2Code mobile application and administration panel by Atomos Technologies OPC Private Limited.",
    "version": "1.0.0",
    "contact": {
      "name": "Atomos Engineering Team",
      "email": "contact@atomostechnologies.com",
      "url": "https://atomostechnologies.com"
    }
  },
  "servers": [
    {
      "url": "https://idea2code.atomostechnologies.com/api/v1",
      "description": "Production API Server"
    }
  ],
  "paths": {
    "/auth/register": {
      "post": {
        "summary": "Register new user account",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": { "type": "string" },
                  "email": { "type": "string" },
                  "password": { "type": "string" },
                  "is_organization": { "type": "boolean" }
                }
              }
            }
          }
        },
        "responses": {
          "201": { "description": "User registered successfully" }
        }
      }
    },
    "/requests": {
      "post": {
        "summary": "Create software request (Raise Request flow)",
        "responses": {
          "201": { "description": "Request created successfully" }
        }
      }
    },
    "/products": {
      "get": {
        "summary": "List active software products catalog",
        "responses": {
          "200": { "description": "Paginated product catalog list" }
        }
      }
    }
  }
}
