Southern Company · Schema

Southern Company Utility Account

Represents a Southern Company (Alabama Power, Georgia Power, Mississippi Power) utility customer account with associated service address, metering, and billing data.

Fortune 500Electric UtilityNatural GasEnergy

Properties

Name Type Description
accountNumber string Unique identifier for the utility account.
accountName string Name associated with the utility account (customer or business name).
subsidiary string The Southern Company subsidiary providing service for this account.
serviceAddress object The physical address where utility service is delivered.
meterNumber string Unique identifier for the utility meter at the service address.
serviceType string Type of utility service provided.
rateSchedule string The regulatory rate tariff code applied to this account (e.g., RS-9, GS-8).
accountStatus string Current status of the utility account.
currentBalance number Current account balance in US dollars.
dueDate string Date by which the current balance is due.
View JSON Schema on GitHub

JSON Schema

southern-utility-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/southern/json-schema/southern-utility-account-schema.json",
  "title": "Southern Company Utility Account",
  "description": "Represents a Southern Company (Alabama Power, Georgia Power, Mississippi Power) utility customer account with associated service address, metering, and billing data.",
  "type": "object",
  "properties": {
    "accountNumber": {
      "type": "string",
      "description": "Unique identifier for the utility account.",
      "example": "123456789"
    },
    "accountName": {
      "type": "string",
      "description": "Name associated with the utility account (customer or business name).",
      "example": "Jane Smith"
    },
    "subsidiary": {
      "type": "string",
      "enum": ["Alabama Power", "Georgia Power", "Mississippi Power", "Southern Company Gas"],
      "description": "The Southern Company subsidiary providing service for this account."
    },
    "serviceAddress": {
      "type": "object",
      "description": "The physical address where utility service is delivered.",
      "properties": {
        "street": { "type": "string" },
        "city": { "type": "string" },
        "state": { "type": "string" },
        "zipCode": { "type": "string" }
      },
      "required": ["street", "city", "state", "zipCode"]
    },
    "meterNumber": {
      "type": "string",
      "description": "Unique identifier for the utility meter at the service address."
    },
    "serviceType": {
      "type": "string",
      "enum": ["Electric", "Natural Gas"],
      "description": "Type of utility service provided."
    },
    "rateSchedule": {
      "type": "string",
      "description": "The regulatory rate tariff code applied to this account (e.g., RS-9, GS-8)."
    },
    "accountStatus": {
      "type": "string",
      "enum": ["Active", "Inactive", "Pending", "Disconnected"],
      "description": "Current status of the utility account."
    },
    "currentBalance": {
      "type": "number",
      "description": "Current account balance in US dollars.",
      "minimum": 0
    },
    "dueDate": {
      "type": "string",
      "format": "date",
      "description": "Date by which the current balance is due."
    }
  },
  "required": ["accountNumber", "accountName", "subsidiary", "serviceAddress", "serviceType"]
}

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/southern-utility-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 email required.

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