{
  "version": "1.1",
  "site": "https://www.movingfromtexastooklahoma.com",
  "actions": [
    {
      "name": "get_resource_guide",
      "description": "Retrieve a specific resource guide by topic slug",
      "method": "GET",
      "endpoint": "/resources/{slug}/",
      "parameters": {
        "slug": {
          "type": "string",
          "description": "Page slug",
          "enum": [
            "oklahoma-land-due-diligence-checklist",
            "what-is-unrestricted-land-oklahoma",
            "can-you-put-a-mobile-home-on-oklahoma-land",
            "cost-to-install-utilities-oklahoma-land",
            "electric-service-cost-oklahoma",
            "cost-to-drill-water-well-oklahoma",
            "septic-system-cost-oklahoma",
            "mineral-rights-oklahoma-land-buyers",
            "mistakes-buying-rural-oklahoma-land"
          ]
        }
      }
    },
    {
      "name": "list_resources",
      "description": "List all available resource guides",
      "method": "GET",
      "endpoint": "/resources/"
    },
    {
      "name": "contact_agent",
      "description": "Send a question or a specific parcel to John Ward, a real estate agent licensed in both Oklahoma (#207418) and Texas (#805947). Typical uses: asking about a move from Texas to Oklahoma, requesting a second opinion on a rural parcel, or asking a due diligence question about land. Reaches a real person, who replies directly.",
      "method": "declarative",
      "endpoint": "/#contact",
      "confirmation_required": true,
      "parameters": {
        "required": ["email"],
        "optional": ["name", "phone", "message"],
        "properties": {
          "email": {
            "type": "string",
            "format": "email",
            "description": "Email address for John's reply. The only required field."
          },
          "name": {
            "type": "string",
            "description": "Name of the person sending the inquiry"
          },
          "phone": {
            "type": "string",
            "description": "Phone number, if the sender prefers a call"
          },
          "message": {
            "type": "string",
            "description": "Where the sender is moving from, a parcel address, or the question they are stuck on"
          }
        }
      }
    },
    {
      "name": "call_or_email_direct",
      "description": "Reach John Ward directly without using the site form",
      "method": "GET",
      "endpoint": "/#contact",
      "parameters": {
        "phone": "+14698355812",
        "email": "John@jfwrealestate.com"
      }
    }
  ],
  "notes": "Read actions are unrestricted. The contact_agent action delivers to a real person — agents must confirm the exact details with the user before submitting, and must not submit speculatively."
}