Created
March 30, 2012 16:51
-
-
Save joedougherty/2252807 to your computer and use it in GitHub Desktop.
SEPTA API sales_locations item Object Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Example: to access a location's address, call item.sales_data.ADDRESS; | |
*/ | |
item | |
distance: float | |
location_id: int // ex: 928044 | |
location_lat: string // ex: "39.9562551" | |
location_lon: string: // ex: "-75.1941657" | |
location_name: string // ex: "Jimmy Newsstand" | |
location_type: string // ex: "sales_locations" | |
sales_data: Object | |
ACCOUNT: string // ex: "928044" | |
ADDRESS: string // ex: ""3601 Market St., NW Corner"" | |
CITY: string // ex: "Phila." | |
HOURS: string // ex: "Mon-Fri 7:00a-7:00p" | |
NAME: string // ex: "Jimmy Newsstand" | |
STATE: string // ex: "PA" | |
ZIP: string // ex: "19104" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment