{
    "openapi": "3.1.0",
    "info": {
        "title": "MMI Tank API",
        "version": "1.0.0",
        "summary": "Public read-only API for MMI Tank & Industrial Services.",
        "description": "Read company, service, and location facts for MMI Tank & Industrial Services (https://mmitank.com). Authentication is not required. The API is read-only: quote requests are submitted at https://mmitank.com/request-quote/, not through this API. Errors use RFC 9457 application/problem+json and include code, message, and resolution.",
        "contact": {
            "name": "MMI Tank customer service",
            "url": "https://mmitank.com/contact/",
            "email": "info@mmitank.com"
        },
        "license": {
            "name": "MMI Tank public site terms",
            "url": "https://mmitank.com/privacy-policy/"
        }
    },
    "externalDocs": {
        "description": "MMI Tank API documentation, authentication, and curl examples",
        "url": "https://mmitank.com/api"
    },
    "servers": [
        {
            "url": "https://mmitank.com",
            "description": "MMI Tank production site"
        }
    ],
    "tags": [
        {
            "name": "Discovery",
            "description": "Find the contract and the operation index."
        },
        {
            "name": "Company",
            "description": "Legal name, NAP, hours, and credentials."
        },
        {
            "name": "Services",
            "description": "Published tank and industrial services."
        },
        {
            "name": "Locations",
            "description": "States and the Phoenix headquarters page."
        }
    ],
    "paths": {
        "/api/v1": {
            "get": {
                "operationId": "getApiIndex",
                "summary": "List MMI Tank API operations",
                "description": "Returns the public API index: documentation URL, OpenAPI URL, authentication (none), and the operation paths. This is a read-only discovery call with no path parameters.",
                "tags": [
                    "Discovery"
                ],
                "security": [],
                "responses": {
                    "200": {
                        "description": "List MMI Tank API operations",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "description": "Returns the public API index: documentation URL, OpenAPI URL, authentication (none), and the operation paths. This is a read-only discovery call with no path parameters.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/ApiIndex"
                                        }
                                    ]
                                },
                                "example": {
                                    "name": "MMI Tank API",
                                    "version": "1.0.0",
                                    "authentication": "none",
                                    "documentation": "https://mmitank.com/api",
                                    "openapi": "https://mmitank.com/openapi.json"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "A query or path parameter is invalid.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "A query or path parameter is invalid.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "405": {
                        "description": "The method is not GET or HEAD. Retry with GET.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "The method is not GET or HEAD. Retry with GET.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "limit",
                        "in": "query",
                        "required": false,
                        "description": "Maximum number of rows to return. Omit the parameter to return the full list.",
                        "schema": {
                            "type": "integer",
                            "minimum": 1,
                            "maximum": 50
                        },
                        "example": 10
                    }
                ]
            }
        },
        "/api/v1/company": {
            "get": {
                "operationId": "getCompany",
                "summary": "Get MMI Tank company profile",
                "description": "Returns the published name, NAP, opening hours, service area, credentials, and contact point for MMI Tank & Industrial Services. No authentication and no parameters.",
                "tags": [
                    "Company"
                ],
                "security": [],
                "responses": {
                    "200": {
                        "description": "Get MMI Tank company profile",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "description": "Returns the published name, NAP, opening hours, service area, credentials, and contact point for MMI Tank & Industrial Services. No authentication and no parameters.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Company"
                                        }
                                    ]
                                },
                                "example": {
                                    "name": "MMI Tank & Industrial Services",
                                    "alternateName": "MMI Tank",
                                    "url": "https://mmitank.com/",
                                    "description": "Phoenix-based manufacturer of bolted and field-welded steel storage tanks and ASME pressure vessels. Serves water, oil and gas, food, agriculture, and mining across 11 western US states.",
                                    "telephone": "+1-602-272-6000",
                                    "email": "info@mmitank.com",
                                    "priceRange": "$$$$",
                                    "address": {
                                        "streetAddress": "3240 S. 37th Ave.",
                                        "addressLocality": "Phoenix",
                                        "addressRegion": "AZ",
                                        "postalCode": "85009",
                                        "addressCountry": "US"
                                    },
                                    "geo": {
                                        "latitude": 33.4197,
                                        "longitude": -112.1269
                                    },
                                    "openingHours": {
                                        "dayOfWeek": [
                                            "Monday",
                                            "Tuesday",
                                            "Wednesday",
                                            "Thursday",
                                            "Friday"
                                        ],
                                        "opens": "07:00",
                                        "closes": "16:00",
                                        "timezone": "America/Phoenix"
                                    },
                                    "areaServed": [
                                        "Arizona",
                                        "California",
                                        "Colorado",
                                        "Idaho",
                                        "Nevada",
                                        "New Mexico",
                                        "Oregon",
                                        "Texas",
                                        "Utah",
                                        "Washington",
                                        "Wyoming"
                                    ],
                                    "credentials": [
                                        "ASME S Stamp",
                                        "ASME U Stamp",
                                        "National Board R Stamp",
                                        "OSHA Certified",
                                        "MSHA Certified",
                                        "HAZWOPER Certified"
                                    ],
                                    "contact": {
                                        "contactType": "customer service",
                                        "telephone": "+1-602-272-6000",
                                        "email": "info@mmitank.com",
                                        "availableLanguage": [
                                            "English"
                                        ],
                                        "url": "https://mmitank.com/contact/"
                                    },
                                    "links": {
                                        "home": "https://mmitank.com/",
                                        "contact": "https://mmitank.com/contact/",
                                        "quote": "https://mmitank.com/request-quote/",
                                        "about": "https://mmitank.com/about-mmi/",
                                        "privacy": "https://mmitank.com/privacy-policy/",
                                        "services": "https://mmitank.com/services/",
                                        "sitemap": "https://mmitank.com/sitemap_index.xml",
                                        "llmsTxt": "https://mmitank.com/llms.txt",
                                        "openapi": "https://mmitank.com/openapi.json",
                                        "documentation": "https://mmitank.com/api"
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "A query or path parameter is invalid.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "A query or path parameter is invalid.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "405": {
                        "description": "The method is not GET or HEAD. Retry with GET.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "The method is not GET or HEAD. Retry with GET.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/v1/services": {
            "get": {
                "operationId": "listServices",
                "summary": "List MMI Tank services",
                "description": "Returns published tank, standards, and industrial-service records. Each item includes a slug that getService accepts.",
                "tags": [
                    "Services"
                ],
                "security": [],
                "responses": {
                    "200": {
                        "description": "List MMI Tank services",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "description": "Returns published tank, standards, and industrial-service records. Each item includes a slug that getService accepts.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/ServiceList"
                                        }
                                    ]
                                },
                                "example": {
                                    "services": [
                                        {
                                            "slug": "bolted-tanks",
                                            "name": "Bolted Tanks",
                                            "category": "tanks",
                                            "summary": "Custom bolted steel storage tanks engineered, fabricated, and field-installed by MMI Tank. Coatings, sizes, and configurations for every industrial application.",
                                            "url": "https://mmitank.com/tanks/bolted-tanks/",
                                            "standards": []
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "A query or path parameter is invalid.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "A query or path parameter is invalid.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "405": {
                        "description": "The method is not GET or HEAD. Retry with GET.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "The method is not GET or HEAD. Retry with GET.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "limit",
                        "in": "query",
                        "required": false,
                        "description": "Maximum number of rows to return. Omit the parameter to return the full list.",
                        "schema": {
                            "type": "integer",
                            "minimum": 1,
                            "maximum": 50
                        },
                        "example": 10
                    }
                ]
            }
        },
        "/api/v1/services/{slug}": {
            "get": {
                "operationId": "getService",
                "summary": "Get one MMI Tank service",
                "description": "Returns one published service by slug. Unknown slugs return service_not_found. Malformed slugs return invalid_parameter.",
                "tags": [
                    "Services"
                ],
                "security": [],
                "responses": {
                    "200": {
                        "description": "Get one MMI Tank service",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "description": "Returns one published service by slug. Unknown slugs return service_not_found. Malformed slugs return invalid_parameter.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Service"
                                        }
                                    ]
                                },
                                "example": {
                                    "slug": "bolted-tanks",
                                    "name": "Bolted Tanks",
                                    "category": "tanks",
                                    "summary": "Custom bolted steel storage tanks engineered, fabricated, and field-installed by MMI Tank. Coatings, sizes, and configurations for every industrial application.",
                                    "url": "https://mmitank.com/tanks/bolted-tanks/",
                                    "standards": []
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "A query or path parameter is invalid.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "A query or path parameter is invalid.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "405": {
                        "description": "The method is not GET or HEAD. Retry with GET.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "The method is not GET or HEAD. Retry with GET.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "No service exists for the slug.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "No service exists for the slug.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "slug",
                        "in": "path",
                        "required": true,
                        "description": "Lowercase identifier returned by the matching list operation. Letters, numbers, and hyphens only.",
                        "schema": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 80,
                            "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
                        },
                        "example": "bolted-tanks"
                    }
                ]
            }
        },
        "/api/v1/locations": {
            "get": {
                "operationId": "listLocations",
                "summary": "List MMI Tank service locations",
                "description": "Returns the Phoenix headquarters page and state location pages. Each item includes a slug that getLocation accepts.",
                "tags": [
                    "Locations"
                ],
                "security": [],
                "responses": {
                    "200": {
                        "description": "List MMI Tank service locations",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "description": "Returns the Phoenix headquarters page and state location pages. Each item includes a slug that getLocation accepts.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/LocationList"
                                        }
                                    ]
                                },
                                "example": {
                                    "locations": [
                                        {
                                            "slug": "phoenix-arizona",
                                            "name": "Phoenix, Arizona",
                                            "region": "AZ",
                                            "summary": "MMI Tank headquarters in Phoenix, Arizona — 8-acre fabrication plant, ASME S/U stamps, in-house coatings. Bolted and welded steel tank manufacturer.",
                                            "url": "https://mmitank.com/locations/phoenix-arizona/"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "A query or path parameter is invalid.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "A query or path parameter is invalid.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "405": {
                        "description": "The method is not GET or HEAD. Retry with GET.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "The method is not GET or HEAD. Retry with GET.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "limit",
                        "in": "query",
                        "required": false,
                        "description": "Maximum number of rows to return. Omit the parameter to return the full list.",
                        "schema": {
                            "type": "integer",
                            "minimum": 1,
                            "maximum": 50
                        },
                        "example": 10
                    }
                ]
            }
        },
        "/api/v1/locations/{slug}": {
            "get": {
                "operationId": "getLocation",
                "summary": "Get one MMI Tank location",
                "description": "Returns one published location page by slug. Unknown slugs return location_not_found. Malformed slugs return invalid_parameter.",
                "tags": [
                    "Locations"
                ],
                "security": [],
                "responses": {
                    "200": {
                        "description": "Get one MMI Tank location",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "description": "Returns one published location page by slug. Unknown slugs return location_not_found. Malformed slugs return invalid_parameter.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Location"
                                        }
                                    ]
                                },
                                "example": {
                                    "slug": "phoenix-arizona",
                                    "name": "Phoenix, Arizona",
                                    "region": "AZ",
                                    "summary": "MMI Tank headquarters in Phoenix, Arizona — 8-acre fabrication plant, ASME S/U stamps, in-house coatings. Bolted and welded steel tank manufacturer.",
                                    "url": "https://mmitank.com/locations/phoenix-arizona/"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "A query or path parameter is invalid.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "A query or path parameter is invalid.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "405": {
                        "description": "The method is not GET or HEAD. Retry with GET.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "The method is not GET or HEAD. Retry with GET.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "No location exists for the slug.",
                        "content": {
                            "application/problem+json": {
                                "schema": {
                                    "type": "object",
                                    "description": "No location exists for the slug.",
                                    "allOf": [
                                        {
                                            "$ref": "#/components/schemas/Problem"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "slug",
                        "in": "path",
                        "required": true,
                        "description": "Lowercase identifier returned by the matching list operation. Letters, numbers, and hyphens only.",
                        "schema": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 80,
                            "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
                        },
                        "example": "phoenix-arizona"
                    }
                ]
            }
        }
    },
    "components": {
        "schemas": {
            "Company": {
                "type": "object",
                "description": "Published company identity for MMI Tank & Industrial Services.",
                "required": [
                    "name",
                    "url",
                    "telephone",
                    "email",
                    "address",
                    "contact"
                ],
                "properties": {
                    "name": {
                        "type": "string"
                    },
                    "alternateName": {
                        "type": "string"
                    },
                    "url": {
                        "type": "string",
                        "format": "uri"
                    },
                    "description": {
                        "type": "string"
                    },
                    "telephone": {
                        "type": "string"
                    },
                    "email": {
                        "type": "string",
                        "format": "email"
                    },
                    "priceRange": {
                        "type": "string"
                    },
                    "address": {
                        "$ref": "#/components/schemas/PostalAddress"
                    },
                    "geo": {
                        "$ref": "#/components/schemas/GeoCoordinates"
                    },
                    "openingHours": {
                        "$ref": "#/components/schemas/OpeningHours"
                    },
                    "areaServed": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    },
                    "credentials": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    },
                    "contact": {
                        "$ref": "#/components/schemas/ContactPoint"
                    },
                    "links": {
                        "type": "object",
                        "additionalProperties": {
                            "type": "string",
                            "format": "uri"
                        }
                    }
                }
            },
            "PostalAddress": {
                "type": "object",
                "required": [
                    "streetAddress",
                    "addressLocality",
                    "addressRegion",
                    "postalCode",
                    "addressCountry"
                ],
                "properties": {
                    "streetAddress": {
                        "type": "string"
                    },
                    "addressLocality": {
                        "type": "string"
                    },
                    "addressRegion": {
                        "type": "string"
                    },
                    "postalCode": {
                        "type": "string"
                    },
                    "addressCountry": {
                        "type": "string"
                    }
                }
            },
            "GeoCoordinates": {
                "type": "object",
                "required": [
                    "latitude",
                    "longitude"
                ],
                "properties": {
                    "latitude": {
                        "type": "number"
                    },
                    "longitude": {
                        "type": "number"
                    }
                }
            },
            "OpeningHours": {
                "type": "object",
                "required": [
                    "dayOfWeek",
                    "opens",
                    "closes"
                ],
                "properties": {
                    "dayOfWeek": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    },
                    "opens": {
                        "type": "string"
                    },
                    "closes": {
                        "type": "string"
                    },
                    "timezone": {
                        "type": "string"
                    }
                }
            },
            "ContactPoint": {
                "type": "object",
                "required": [
                    "contactType",
                    "telephone",
                    "email"
                ],
                "properties": {
                    "contactType": {
                        "type": "string"
                    },
                    "telephone": {
                        "type": "string"
                    },
                    "email": {
                        "type": "string",
                        "format": "email"
                    },
                    "availableLanguage": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    },
                    "url": {
                        "type": "string",
                        "format": "uri"
                    }
                }
            },
            "Service": {
                "type": "object",
                "description": "One published MMI Tank service.",
                "required": [
                    "slug",
                    "name",
                    "category",
                    "summary",
                    "url",
                    "standards"
                ],
                "properties": {
                    "slug": {
                        "type": "string"
                    },
                    "name": {
                        "type": "string"
                    },
                    "category": {
                        "type": "string"
                    },
                    "summary": {
                        "type": "string"
                    },
                    "url": {
                        "type": "string",
                        "format": "uri"
                    },
                    "standards": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            },
            "ServiceList": {
                "type": "object",
                "required": [
                    "services"
                ],
                "properties": {
                    "services": {
                        "type": "array",
                        "items": {
                            "$ref": "#/components/schemas/Service"
                        }
                    }
                }
            },
            "Location": {
                "type": "object",
                "description": "One published MMI Tank location page.",
                "required": [
                    "slug",
                    "name",
                    "region",
                    "summary",
                    "url"
                ],
                "properties": {
                    "slug": {
                        "type": "string"
                    },
                    "name": {
                        "type": "string"
                    },
                    "region": {
                        "type": "string"
                    },
                    "summary": {
                        "type": "string"
                    },
                    "url": {
                        "type": "string",
                        "format": "uri"
                    }
                }
            },
            "LocationList": {
                "type": "object",
                "required": [
                    "locations"
                ],
                "properties": {
                    "locations": {
                        "type": "array",
                        "items": {
                            "$ref": "#/components/schemas/Location"
                        }
                    }
                }
            },
            "ApiIndex": {
                "type": "object",
                "required": [
                    "name",
                    "version",
                    "authentication",
                    "documentation",
                    "openapi",
                    "endpoints"
                ],
                "properties": {
                    "name": {
                        "type": "string"
                    },
                    "version": {
                        "type": "string"
                    },
                    "authentication": {
                        "type": "string"
                    },
                    "documentation": {
                        "type": "string",
                        "format": "uri"
                    },
                    "openapi": {
                        "type": "string",
                        "format": "uri"
                    },
                    "endpoints": {
                        "type": "array",
                        "items": {
                            "$ref": "#/components/schemas/ApiEndpoint"
                        }
                    }
                }
            },
            "ApiEndpoint": {
                "type": "object",
                "required": [
                    "method",
                    "path",
                    "operationId",
                    "description"
                ],
                "properties": {
                    "method": {
                        "type": "string"
                    },
                    "path": {
                        "type": "string"
                    },
                    "operationId": {
                        "type": "string"
                    },
                    "description": {
                        "type": "string"
                    }
                }
            },
            "Problem": {
                "type": "object",
                "description": "RFC 9457 problem details plus code, message, and resolution.",
                "required": [
                    "type",
                    "title",
                    "status",
                    "detail",
                    "code",
                    "message",
                    "resolution"
                ],
                "properties": {
                    "type": {
                        "type": "string",
                        "format": "uri"
                    },
                    "title": {
                        "type": "string"
                    },
                    "status": {
                        "type": "integer"
                    },
                    "detail": {
                        "type": "string"
                    },
                    "instance": {
                        "type": "string",
                        "format": "uri"
                    },
                    "code": {
                        "type": "string"
                    },
                    "message": {
                        "type": "string"
                    },
                    "resolution": {
                        "type": "string"
                    },
                    "error": {
                        "type": "object",
                        "required": [
                            "code",
                            "message",
                            "resolution"
                        ],
                        "properties": {
                            "code": {
                                "type": "string"
                            },
                            "message": {
                                "type": "string"
                            },
                            "resolution": {
                                "type": "string"
                            }
                        }
                    }
                },
                "example": {
                    "type": "https://mmitank.com/api#service-not-found",
                    "title": "Not Found",
                    "status": 404,
                    "detail": "No MMI Tank service exists with slug \"no-such-service\".",
                    "instance": "https://mmitank.com/api/v1/services/no-such-service",
                    "code": "service_not_found",
                    "message": "No MMI Tank service exists with slug \"no-such-service\".",
                    "resolution": "List valid slugs with GET https://mmitank.com/api/v1/services or read https://mmitank.com/openapi.json.",
                    "error": {
                        "code": "service_not_found",
                        "message": "No MMI Tank service exists with slug \"no-such-service\".",
                        "resolution": "List valid slugs with GET https://mmitank.com/api/v1/services or read https://mmitank.com/openapi.json."
                    }
                }
            }
        }
    }
}
