-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrepresentative-points-response.json
69 lines (69 loc) · 1.51 KB
/
representative-points-response.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"title": "POSTRepresentativePointsResponse",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Response shape for POST /api/representative_points/",
"definitions": {
"bucket": {
"items": {
"properties": {
"name": {
"type": "string"
},
"values": {
"items": {
"type": "number"
},
"type": "array"
}
},
"additionalProperties": false,
"required": ["name", "values"]
},
"type": "array"
}
},
"type": "array",
"items": {
"properties": {
"county": {
"type": "string"
},
"demographics": {
"type": "array",
"items": {
"properties": {
"buckets": {
"$ref": "#/definitions/bucket"
},
"category": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["buckets", "category"]
}
},
"id": {
"type": "integer"
},
"lat": {
"type": "number"
},
"lng": {
"type": "number"
},
"population": {
"type": "integer"
},
"service_area_id": {
"type": "string"
},
"zip": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["census_tract", "county", "id", "lat", "lng", "population", "service_area_id", "zip"]
},
"additionalProperties": false
}