-
Notifications
You must be signed in to change notification settings - Fork 19
/
location.json
50 lines (50 loc) · 1.47 KB
/
location.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[
{
"type": "integer",
"name": "location_id",
"mode": "required",
"description": "A unique identifier for each geographic location."
},
{
"type": "string",
"name": "address_1",
"mode": "nullable",
"description": "The address field 1, typically used for the street address, as it appears in the source data."
},
{
"type": "string",
"name": "address_2",
"mode": "nullable",
"description": "The address field 2, typically used for additional detail such as buildings, suites, floors, as it appears in the source data."
},
{
"type": "string",
"name": "city",
"mode": "nullable",
"description": "The city field as it appears in the source data."
},
{
"type": "string",
"name": "state",
"mode": "nullable",
"description": "The state field as it appears in the source data."
},
{
"type": "string",
"name": "zip",
"mode": "nullable",
"description": "The zip or postal code."
},
{
"type": "string",
"name": "county",
"mode": "nullable",
"description": "The county."
},
{
"type": "string",
"name": "location_source_value",
"mode": "nullable",
"description": "The verbatim information that is used to uniquely identify the location as it appears in the source data."
}
]