Waste Management · Schema
Waste Management Invoice
Schema for a Waste Management invoice including summary fields, line items, and applied fees.
Environmental ServicesFortune 500RecyclingSolid WasteSustainabilityWaste Management
Properties
| Name | Type | Description |
|---|---|---|
| invoiceId | string | Unique invoice identifier. |
| invoiceDate | string | Date the invoice was issued. |
| dueDate | string | Payment due date. |
| totalAmount | number | Total invoice amount including all fees. |
| status | string | Payment status of the invoice. |
| lineItems | array | Individual line items on the invoice. |
| fees | array | Surcharges and regulatory fees applied to the invoice. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.wm.com/schemas/invoice.json",
"title": "Waste Management Invoice",
"description": "Schema for a Waste Management invoice including summary fields, line items, and applied fees.",
"type": "object",
"required": ["invoiceId", "invoiceDate", "dueDate", "totalAmount", "status"],
"properties": {
"invoiceId": {
"type": "string",
"description": "Unique invoice identifier."
},
"invoiceDate": {
"type": "string",
"format": "date",
"description": "Date the invoice was issued."
},
"dueDate": {
"type": "string",
"format": "date",
"description": "Payment due date."
},
"totalAmount": {
"type": "number",
"description": "Total invoice amount including all fees."
},
"status": {
"type": "string",
"enum": ["Paid", "Unpaid", "Overdue", "Void"],
"description": "Payment status of the invoice."
},
"lineItems": {
"type": "array",
"description": "Individual line items on the invoice.",
"items": {
"type": "object",
"required": ["description", "amount"],
"properties": {
"description": {
"type": "string",
"description": "Description of the line item."
},
"amount": {
"type": "number",
"description": "Amount for this line item."
},
"serviceId": {
"type": "string",
"description": "Service ID this line item relates to."
}
}
}
},
"fees": {
"type": "array",
"description": "Surcharges and regulatory fees applied to the invoice.",
"items": {
"type": "object",
"required": ["feeType", "amount"],
"properties": {
"feeType": {
"type": "string",
"enum": ["Fuel Surcharge", "Environmental Fee", "Regulatory Cost Recovery", "State Fee"],
"description": "Type of fee applied."
},
"amount": {
"type": "number",
"description": "Amount of this fee."
}
}
}
}
}
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/waste-management-invoice"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.