{
  "openapi": "3.1.0",
  "info": {
    "title": "M&L Compro Oro Genzano di Roma agent API",
    "version": "1.0.0",
    "description": "Public agent-facing discovery for business information, contact, and optional paid intake workflows."
  },
  "servers": [
    {
      "url": "https://www.comprooro-genzanodiroma.it"
    }
  ],
  "x-service-info": {
    "name": "M&L Compro Oro Genzano di Roma",
    "categories": [
      "local-business",
      "precious-metals",
      "valuation",
      "contact"
    ],
    "commerce_note": "The public website is not an online shop. Payment metadata is limited to optional agent-native intake examples."
  },
  "paths": {
    "/agent/register": {
      "get": {
        "operationId": "getAgentRegistration",
        "summary": "Get agent registration instructions",
        "responses": {
          "200": {
            "description": "Registration metadata"
          }
        }
      }
    },
    "/agent/payments/valuation-intake": {
      "get": {
        "operationId": "getValuationIntakePayment",
        "summary": "Optional paid agent intake for valuation requests",
        "description": "Returns HTTP 402 payment requirements for an optional agent-native intake workflow.",
        "x-payment-info": {
          "intent": "charge",
          "method": "card",
          "amount": "1.00",
          "currency": "EUR",
          "description": "Optional agent-assisted valuation intake request."
        },
        "responses": {
          "402": {
            "description": "Payment required"
          }
        }
      }
    }
  }
}