UGI Corporation · Schema
UGI Energy Account
Schema for a UGI utility customer account with service and billing information.
EnergyUtilitiesNatural GasPropaneElectricFortune 500Pennsylvania
Properties
| Name | Type | Description |
|---|---|---|
| accountNumber | string | Unique UGI account identifier. |
| customerName | string | Full name of the account holder. |
| serviceAddress | object | Service delivery address. |
| serviceType | string | Type of energy service. |
| meterNumber | string | Meter identifier at the service address. |
| accountStatus | string | Current account status. |
| billingSummary | object | Current billing information. |
| usageSummary | object | Recent energy usage summary. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/api-evangelist/ugi/blob/main/json-schema/ugi-energy-account-schema.json",
"title": "UGI Energy Account",
"description": "Schema for a UGI utility customer account with service and billing information.",
"type": "object",
"properties": {
"accountNumber": {
"type": "string",
"description": "Unique UGI account identifier."
},
"customerName": {
"type": "string",
"description": "Full name of the account holder."
},
"serviceAddress": {
"type": "object",
"description": "Service delivery address.",
"properties": {
"street": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"zipCode": { "type": "string" }
}
},
"serviceType": {
"type": "string",
"enum": ["natural_gas", "electric", "propane"],
"description": "Type of energy service."
},
"meterNumber": {
"type": "string",
"description": "Meter identifier at the service address."
},
"accountStatus": {
"type": "string",
"enum": ["active", "inactive", "pending", "suspended"],
"description": "Current account status."
},
"billingSummary": {
"type": "object",
"description": "Current billing information.",
"properties": {
"amountDue": { "type": "number", "description": "Amount due in USD." },
"dueDate": { "type": "string", "format": "date" },
"lastPaymentAmount": { "type": "number" },
"lastPaymentDate": { "type": "string", "format": "date" }
}
},
"usageSummary": {
"type": "object",
"description": "Recent energy usage summary.",
"properties": {
"currentReading": { "type": "number" },
"previousReading": { "type": "number" },
"usage": { "type": "number" },
"usageUnit": {
"type": "string",
"enum": ["CCF", "MCF", "kWh", "gallons"],
"description": "Unit of energy measurement."
},
"billingPeriodStart": { "type": "string", "format": "date" },
"billingPeriodEnd": { "type": "string", "format": "date" }
}
}
}
}
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/ugi-energy-account"
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.