A product in the catalog

interface Station {
    access_type: AccessType;
    der_energy: number;
    der_power: number;
    host_email: string;
    host_first_name: string;
    host_last_name: string;
    onsite_der: boolean;
    onsite_der_type: OnsiteDERType;
    operating_status: OperatingStatus;
    operator_address: string;
    operator_city: string;
    operator_name: string;
    operator_state: string;
    operator_zip?: string;
    site_host_type: string;
    site_host_type_detail: string;
    station_address: string;
    station_city: string;
    station_county: string;
    station_id: string;
    station_lat: number;
    station_lon: number;
    station_name: string;
    station_state: string;
    station_zip: string;
    [property: string]: any;
}

Indexable

[property: string]: any

Properties

access_type: AccessType

Valid Access Type.

der_energy: number

Combined nameplate capacity of onsite energy generation and/or maximum battery discharge capacity in kilowatts (kW).

der_power: number

Nameplate capacity of onsite energy generation in kW

host_email: string

Station host point of contact email address

host_first_name: string

Station host point of contact first name

host_last_name: string

Station host point of contact last name

onsite_der: boolean

Station has distributed energy resource.

onsite_der_type: OnsiteDERType

Valid Distributed Energy Resource Type

operating_status: OperatingStatus

Valid Operating Status.

operator_address: string

Street address of entity responsible for operation and maintenance of the funded charging station.

operator_city: string

City of entity responsible for operation and maintenance of the funded charging station.

operator_name: string

Name of entity responsible for operation and maintenance of the funded charging station.

operator_state: string

Valid state code of entity responsible for operation and maintenance of the funded charging station.

operator_zip?: string

Valid ZIP Code of entity responsible for operation and maintenance of the of the funded charging station.

site_host_type: string

Type of site host for the charging station. (e.g. public, workplace, MUD)

site_host_type_detail: string

Additional detail on site host land use. (e.g. hospital, hotel, parking garage, etc.)

station_address: string

Street address of charging station.

station_city: string

City where charging station is located.

station_county: string

Station county (or county analogue)

station_id: string

Unique identity specific to the physical location of the station (site) funded by the project. (For NEVI/Part 680 programs, Station ID must be same as the permanent station identifier provided to third parties pursuant to CFR 23 § 680.116(c)(1).

station_lat: number

Station center WSG84 encoded latitude in decimal degrees to at least 4 decimal places. Valid latitudes are between -90 and 90.

station_lon: number

Station center WSG84-encoded longitude in decimal degrees to at least 4 decimal places. Valid longitudes are between -180 and 180

station_name: string

Descriptive name of charging site (e.g., Mercy Hospital)

station_state: string

Valid state code of state where station or territory where the station is located.

station_zip: string

Valid ZIP code of where station is located.