{
  "openapi": "3.1.0",
  "info": {
    "title": "OVM Site Discovery API",
    "version": "2026-05-03",
    "summary": "Public website metadata endpoints for OVM service discovery and contact routing.",
    "description": "This static OpenAPI description covers public JSON endpoints published from the OVM website for agent discovery."
  },
  "servers": [
    {
      "url": "https://ovmtransport.com/.well-known/ovm-site-api"
    }
  ],
  "paths": {
    "/status.json": {
      "get": {
        "summary": "Get status for the public site discovery API",
        "operationId": "getStatus",
        "responses": {
          "200": {
            "description": "Operational status for the public website discovery endpoints",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "service": { "type": "string" },
                    "status": { "type": "string" },
                    "updated_at": { "type": "string" },
                    "site_url": { "type": "string", "format": "uri" },
                    "api_catalog": { "type": "string", "format": "uri" },
                    "docs_url": { "type": "string", "format": "uri" }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/contact.json": {
      "get": {
        "summary": "Get contact and quote submission metadata",
        "operationId": "getContactMetadata",
        "responses": {
          "200": {
            "description": "Contact channels and standard quote fields",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "business_name": { "type": "string" },
                    "phone": { "type": "string" },
                    "phone_display": { "type": "string" },
                    "email": { "type": "string", "format": "email" },
                    "contact_page": { "type": "string", "format": "uri" },
                    "quote_fields": {
                      "type": "array",
                      "items": { "type": "string" }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/services.json": {
      "get": {
        "summary": "Get service pages and descriptions",
        "operationId": "getServiceMetadata",
        "responses": {
          "200": {
            "description": "Public service pages for OVM vehicle delivery and trade plate work",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "services": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": { "type": "string" },
                          "url": { "type": "string", "format": "uri" },
                          "description": { "type": "string" }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/coverage.json": {
      "get": {
        "summary": "Get location and coverage metadata",
        "operationId": "getCoverageMetadata",
        "responses": {
          "200": {
            "description": "National coverage and key served locations",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "coverage": {
                      "type": "object",
                      "properties": {
                        "nationwide": { "type": "boolean" },
                        "countries": { "type": "array", "items": { "type": "string" } },
                        "locations": { "type": "array", "items": { "type": "string" } },
                        "locations_page": { "type": "string", "format": "uri" }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
