{
  "tool_id": "couples_money_merge",
  "slug": "couples-money-merge-calculator",
  "path": "/couples-money-merge-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifinhub.io/api/couples-money-merge-calculator/?<params>",
  "sample_input": {
    "tool": "couples_money_merge_calculator",
    "income_partner_a": "75000",
    "income_partner_b": "55000",
    "shared_expenses_monthly": "4000",
    "strategy": "hybrid",
    "hybrid_percent_shared": "70"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "income_partner_a": {
        "type": "number",
        "minimum": 0
      },
      "income_partner_b": {
        "type": "number",
        "minimum": 0
      },
      "shared_expenses_monthly": {
        "type": "number",
        "minimum": 0
      },
      "strategy": {
        "type": "string",
        "enum": [
          "joint",
          "separate",
          "hybrid"
        ]
      },
      "hybrid_percent_shared": {
        "type": "number",
        "minimum": 0,
        "maximum": 100
      }
    },
    "required": [
      "income_partner_a",
      "income_partner_b",
      "shared_expenses_monthly",
      "strategy",
      "hybrid_percent_shared"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "primaryLabel": {
        "type": "string"
      },
      "primaryValue": {
        "type": "number"
      },
      "primaryFormat": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "metrics": {
        "type": "array"
      },
      "warnings": {
        "type": "array"
      }
    }
  }
}
