{
  "openapi": "3.1.1",
  "info": {
    "title": "Frontier Technologies public information",
    "version": "1.0.0",
    "description": "Read company capabilities and instructions for enquiries. Submissions use the existing browser form or authorised email. No POST submission API is available."
  },
  "servers": [
    {
      "url": "https://fjfrontier.com"
    }
  ],
  "paths": {
    "/company.json": {
      "get": {
        "operationId": "getCompanyProfile",
        "summary": "Read the public company profile and services",
        "responses": {
          "200": {
            "description": "Company profile",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "name",
                    "legal_name",
                    "services",
                    "contact"
                  ],
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "legal_name": {
                      "type": "string"
                    },
                    "services": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "name",
                          "description",
                          "url"
                        ],
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "url": {
                            "type": "string",
                            "format": "uri"
                          }
                        }
                      }
                    },
                    "contact": {
                      "type": "object",
                      "properties": {
                        "general_email": {
                          "type": "string",
                          "format": "email"
                        },
                        "urgent_email": {
                          "type": "string",
                          "format": "email"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/company.xml": {
      "get": {
        "operationId": "getCompanyProfileXml",
        "summary": "Read the XML company profile",
        "responses": {
          "200": {
            "description": "Custom Frontier XML profile; not an industry-standard agent protocol",
            "content": {
              "text/xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/enquiries.json": {
      "get": {
        "operationId": "getEnquiryInstructions",
        "summary": "Read enquiry methods and required form fields",
        "responses": {
          "200": {
            "description": "Browser and email submission guide; this operation does not submit anything",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "submission_methods",
                    "submission_api_available",
                    "form",
                    "email"
                  ],
                  "properties": {
                    "submission_methods": {
                      "type": "array",
                      "items": {
                        "type": "string",
                        "enum": [
                          "browser_form",
                          "email"
                        ]
                      }
                    },
                    "submission_api_available": {
                      "type": "boolean",
                      "const": false
                    },
                    "form": {
                      "type": "object"
                    },
                    "email": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
