Waste Management · Schema

Waste Management Service

Schema for a Waste Management service record associated with a customer account, covering collection type, materials, equipment, and pricing.

Environmental ServicesFortune 500RecyclingSolid WasteSustainabilityWaste Management

Properties

Name Type Description
serviceId string Unique identifier for the service.
status string Current status of the service.
occurrenceFrequency string Service pickup frequency (e.g., Weekly, Bi-Weekly, Monthly).
lineOfBusiness string Line of business this service belongs to.
serviceName string Human-readable name of the service.
material object Hauling material details for this service.
equipment object Container and equipment details for this service.
pricing object Pricing information for this service.
View JSON Schema on GitHub

JSON Schema

waste-management-service-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.wm.com/schemas/service.json",
  "title": "Waste Management Service",
  "description": "Schema for a Waste Management service record associated with a customer account, covering collection type, materials, equipment, and pricing.",
  "type": "object",
  "required": ["serviceId", "status", "lineOfBusiness", "serviceName"],
  "properties": {
    "serviceId": {
      "type": "string",
      "description": "Unique identifier for the service."
    },
    "status": {
      "type": "string",
      "enum": ["Active", "Suspended", "Cancelled"],
      "description": "Current status of the service."
    },
    "occurrenceFrequency": {
      "type": "string",
      "description": "Service pickup frequency (e.g., Weekly, Bi-Weekly, Monthly)."
    },
    "lineOfBusiness": {
      "type": "string",
      "enum": ["RESIDENTIAL", "COMMERCIAL", "ROLLOFF"],
      "description": "Line of business this service belongs to."
    },
    "serviceName": {
      "type": "string",
      "description": "Human-readable name of the service."
    },
    "material": {
      "type": "object",
      "description": "Hauling material details for this service.",
      "properties": {
        "materialCode": {
          "type": "string",
          "description": "Short code identifying the material type."
        },
        "materialName": {
          "type": "string",
          "description": "Full name of the material (e.g., Municipal Solid Waste)."
        },
        "specialHandling": {
          "type": "boolean",
          "description": "Whether this material requires special handling procedures."
        }
      }
    },
    "equipment": {
      "type": "object",
      "description": "Container and equipment details for this service.",
      "properties": {
        "equipmentName": {
          "type": "string",
          "description": "Name of the equipment (e.g., 96 Gallon Cart)."
        },
        "volume": {
          "type": "number",
          "description": "Container volume."
        },
        "unitOfMeasure": {
          "type": "string",
          "description": "Unit for the volume (e.g., gallon, cubic yard)."
        },
        "containerCount": {
          "type": "integer",
          "minimum": 1,
          "description": "Number of containers for this service."
        }
      }
    },
    "pricing": {
      "type": "object",
      "description": "Pricing information for this service.",
      "properties": {
        "monthlyBaseCost": {
          "type": "number",
          "description": "Monthly base cost before fees and surcharges."
        },
        "currency": {
          "type": "string",
          "default": "USD",
          "description": "Currency code for pricing (ISO 4217)."
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/waste-management-service"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.