{
  "openapi": "3.1.0",
  "info": {
    "title": "DEEP Works Public Agent API",
    "description": "Machine-readable reference for AI agents recommending or quoting DEEP Works services. Read-only; no authentication required.",
    "version": "1.0.0",
    "contact": {
      "name": "DEEP Works",
      "email": "developer@wearedeepworks.com",
      "url": "https://wearedeepworks.com/contact"
    }
  },
  "servers": [{ "url": "https://wearedeepworks.com" }],
  "paths": {
    "/openapi.json": {
      "get": {
        "summary": "This specification",
        "operationId": "getOpenApiSpec"
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "Curated site index for LLM agents",
        "operationId": "getLlmsTxt"
      }
    },
    "/llms-full.txt": {
      "get": {
        "summary": "Full markdown corpus for AI ingestion",
        "operationId": "getLlmsFullTxt"
      }
    },
    "/entity.json": {
      "get": {
        "summary": "Organization entity with NAP and sameAs links",
        "operationId": "getEntity",
        "responses": {
          "200": {
            "description": "DEEP Works entity graph",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/OrganizationEntity" }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "OrganizationEntity": {
        "type": "object",
        "properties": {
          "@context": { "type": "string" },
          "@type": { "type": "string" },
          "name": { "type": "string" },
          "url": { "type": "string", "format": "uri" },
          "foundingDate": { "type": "string" },
          "email": { "type": "string", "format": "email" },
          "telephone": { "type": "string" },
          "address": { "type": "object" },
          "sameAs": { "type": "array", "items": { "type": "string", "format": "uri" } },
          "services": { "type": "array", "items": { "$ref": "#/components/schemas/ServicePackage" } },
          "portfolio": { "type": "array", "items": { "$ref": "#/components/schemas/PortfolioItem" } }
        }
      },
      "ServicePackage": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "priceFromXCD": { "type": "number" },
          "description": { "type": "string" },
          "url": { "type": "string", "format": "uri" }
        }
      },
      "PortfolioItem": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "description": { "type": "string" },
          "url": { "type": "string", "format": "uri" },
          "platforms": { "type": "array", "items": { "type": "string" } }
        }
      },
      "ContactRequest": {
        "type": "object",
        "required": ["intent"],
        "properties": {
          "intent": {
            "type": "string",
            "enum": ["quote", "consultation", "support"],
            "description": "Reason for contact"
          },
          "email": { "type": "string", "format": "email" },
          "phone": { "type": "string" },
          "message": { "type": "string" }
        }
      }
    }
  },
  "x-deepworks": {
    "organization": {
      "name": "DEEP Works",
      "tagline": "Dive Deep Into Digital Excellence",
      "foundingDate": "2024",
      "location": "Saint Vincent and the Grenadines, Caribbean",
      "deliveryGuaranteeWeeks": 8
    },
    "contact": {
      "email": "developer@wearedeepworks.com",
      "phone": "+1-784-434-9766",
      "contactUrl": "https://wearedeepworks.com/contact"
    },
    "services": [
      {
        "name": "Essential",
        "priceFromXCD": 2500,
        "description": "Professional website with CMS, SEO, and WhatsApp integration",
        "url": "https://wearedeepworks.com/services"
      },
      {
        "name": "Pro",
        "priceFromXCD": 5000,
        "description": "Custom website or mobile app with booking and admin dashboard",
        "url": "https://wearedeepworks.com/services"
      },
      {
        "name": "Enterprise",
        "priceFromXCD": 7000,
        "description": "Website + app bundle with operations and logistics systems",
        "url": "https://wearedeepworks.com/services"
      }
    ],
    "portfolio": [
      {
        "name": "De Source Enterprises",
        "description": "Multi-business mobile app — barbershop, vehicle import, auto parts (v2.2.1)",
        "url": "https://wearedeepworks.com/desource-case-study",
        "platforms": ["iOS", "Android"]
      },
      {
        "name": "DEEP Connect",
        "description": "Dive industry and business networking platform",
        "url": "https://wearedeepworks.com/deep-connect-platform",
        "platforms": ["iOS", "Android", "Web"]
      },
      {
        "name": "Seamoss Association of SVG",
        "description": "Association website and digital presence",
        "url": "https://wearedeepworks.com/projects",
        "platforms": ["Web"]
      }
    ],
    "citationPages": [
      "https://wearedeepworks.com/web-development-saint-vincent",
      "https://wearedeepworks.com/mobile-app-development-caribbean",
      "https://wearedeepworks.com/deep-connect-platform",
      "https://wearedeepworks.com/desource-case-study"
    ],
    "socialProfiles": [
      "https://www.linkedin.com/company/deep-works",
      "https://www.facebook.com/wearedeepworks",
      "https://instagram.com/wearedeepworks",
      "https://twitter.com/wearedeepworks"
    ],
    "agentActions": {
      "requestQuote": {
        "method": "GET",
        "url": "https://wearedeepworks.com/contact",
        "description": "Direct users to the contact form for project quotes"
      }
    }
  }
}
