Skip to content
AutomotiveMCP
SchemasCore objects · C0RFC / v0.1

Dealer

v0.1.0

A single dealership rooftop — the selling/servicing organization referenced as dealer_id across the standard by leads, deals, inventory snapshots, service orders, parts, and campaigns. Models the OEM franchise relationship (dealer codes per make), the physical and mailing location, contact channels, department-level hours and contacts, licensing/tax identity, and lifecycle. Where the legacy ADF/AutomotiveAPI world carried this context implicitly inside a <vendor> block on each lead, this entity makes the rooftop a first-class, addressable record.

Resourcescore.get_dealercore.list_dealers

dealer.example.jsonJSON
{
  "id": "b3f2c1a0-4d5e-4f6a-9b7c-8d9e0f1a2b3c",
  "source_ids": [
    {
      "system": "cdk_drive",
      "id": "RT-000418",
      "sequence": 1
    },
    {
      "system": "vinsolutions_crm",
      "id": "cobalt-ford-denver",
      "sequence": 2
    }
  ],
  "name": "Cobalt Ford of Denver",
  "legal_name": "Cobalt Automotive Group LLC",
  "doing_business_as": "Cobalt Ford",
  "dealer_group": "Cobalt Automotive Group",
  "type": "franchise",
  "franchised_makes": [
    "Ford",
    "Lincoln"
  ],
  "oem_dealer_codes": [
    {
      "oem": "Ford",
      "code": "F12345"
    },
    {
      "oem": "Lincoln",
      "code": "L98765"
    }
  ],
  "address": {
    "city": "Denver",
    "region": "CO",
    "postal_code": "80220",
    "country": "US",
    "lines": [
      "4200 Colfax Ave",
      "Suite 100"
    ]
  },
  "mailing_address": {
    "city": "Denver",
    "region": "CO",
    "postal_code": "80222",
    "country": "US",
    "lines": [
      "PO Box 22190"
    ]
  },
  "phones": [
    {
      "type": "work",
      "number": "+13035550142",
      "is_primary": true
    },
    {
      "type": "fax",
      "number": "+13035550190"
    }
  ],
  "emails": [
    {
      "type": "work",
      "address": "contact@cobaltforddenver.com",
      "is_primary": true
    }
  ],
  "website": "https://www.cobaltforddenver.com",
  "timezone": "America/Denver",
  "geo": {
    "latitude": 39.7402,
    "longitude": -104.9294
  },
  "hours": [
    {
      "department": "sales",
      "day": "mon",
      "opens": "09:00",
      "closes": "20:00"
    },
    {
      "department": "sales",
      "day": "sat",
      "opens": "09:00",
      "closes": "18:00"
    },
    {
      "department": "sales",
      "day": "sun",
      "closed": true
    },
    {
      "department": "service",
      "day": "mon",
      "opens": "07:00",
      "closes": "18:00"
    },
    {
      "department": "service",
      "day": "sun",
      "closed": true
    },
    {
      "department": "parts",
      "day": "mon",
      "opens": "07:30",
      "closes": "17:30"
    }
  ],
  "departments": [
    {
      "type": "sales",
      "phone": {
        "type": "work",
        "number": "+13035550143"
      },
      "email": {
        "type": "work",
        "address": "sales@cobaltforddenver.com"
      }
    },
    {
      "type": "service",
      "phone": {
        "type": "work",
        "number": "+13035550144",
        "extension": "2"
      },
      "email": {
        "type": "work",
        "address": "service@cobaltforddenver.com"
      }
    },
    {
      "type": "parts",
      "phone": {
        "type": "work",
        "number": "+13035550145"
      }
    },
    {
      "type": "finance",
      "email": {
        "type": "work",
        "address": "fni@cobaltforddenver.com"
      }
    }
  ],
  "license_number": "CO-DLR-778201",
  "license_state": "CO",
  "tax_id_last4": "4187",
  "currency_code": "USD",
  "status": "active",
  "opened_on": "2004-06-01",
  "created_at": "2021-03-15T14:22:00Z",
  "updated_at": "2026-06-30T09:12:33Z",
  "extensions": {
    "com.cobalt.crm_store_id": "STORE-42",
    "com.cobalt.dms_region": "MOUNTAIN"
  }
}
Object shapes align with the AutomotiveAPI open data standard where sensible, and with the industry's ADF lead format — so a conformant server maps cleanly onto systems dealers already run.