{
  "openapi": "3.1.0",
  "info": {
    "title": "Vegas Valley Home Services public information interface",
    "version": "1.0.0",
    "description": "Read-only machine documents for public service, contact, and canonical-page information. This interface does not accept service requests or bookings."
  },
  "servers": [
    {
      "url": "https://servicesvegas.com"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "summary": "Read the public site map and agent guidance",
        "responses": {
          "200": {
            "description": "Plain-text public site map and guidance",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/agentic-discoverability.json": {
      "get": {
        "summary": "Read the machine-readable site manifest",
        "responses": {
          "200": {
            "description": "Public JSON site manifest",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/sitemap.xml": {
      "get": {
        "summary": "Read canonical public pages",
        "responses": {
          "200": {
            "description": "XML sitemap for public pages",
            "content": {
              "application/xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
