"components": {
    "schemas": {
      "ServiceList": {
        "type": "object",
        "properties": {
          "services": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": { "type": "string" },
                "category": { "type": "string" },
                "description": { "type": "string" },
                "target_audience": { 
                  "type": "string",
                  "description": "The ideal client type for this service (e.g., SMB, Enterprise)" 
                },
                "pricing_model": { 
                   "type": "string",
                   "description": "How the service is billed (e.g., Fixed Fee, Hourly)" 
                },
                "deliverables": {
                  "type": "array",
                  "items": { "type": "string" },
                  "description": "A specific list of what the client receives."
                },
                "url": { "type": "string" }
              }
            }
          }
        }
      }
    }
  }