forked from ChelseaKR/gtfs-scorecard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverage.schema.json
More file actions
48 lines (48 loc) · 1.85 KB
/
Copy pathcoverage.schema.json
File metadata and controls
48 lines (48 loc) · 1.85 KB
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://gtfsscorecard.org/schemas/coverage.schema.json",
"title": "GTFS Scorecard coverage denominators",
"type": "object",
"additionalProperties": false,
"required": [
"configured_feed_records",
"active_canonical_feed_records",
"country_count",
"distinct_organization_keys",
"provisional_organization_keys",
"published_scorecard_pages",
"scored_latest_rows",
"definitions"
],
"properties": {
"configured_feed_records": { "type": "integer", "minimum": 0 },
"active_canonical_feed_records": { "type": "integer", "minimum": 0 },
"country_count": { "type": "integer", "minimum": 0 },
"distinct_organization_keys": { "type": "integer", "minimum": 0 },
"provisional_organization_keys": { "type": "integer", "minimum": 0 },
"published_scorecard_pages": { "type": "integer", "minimum": 0 },
"scored_latest_rows": { "type": "integer", "minimum": 0 },
"definitions": {
"type": "object",
"additionalProperties": false,
"required": [
"configured_feed_records",
"active_canonical_feed_records",
"country_count",
"distinct_organization_keys",
"provisional_organization_keys",
"published_scorecard_pages",
"scored_latest_rows"
],
"properties": {
"configured_feed_records": { "type": "string", "minLength": 1 },
"active_canonical_feed_records": { "type": "string", "minLength": 1 },
"country_count": { "type": "string", "minLength": 1 },
"distinct_organization_keys": { "type": "string", "minLength": 1 },
"provisional_organization_keys": { "type": "string", "minLength": 1 },
"published_scorecard_pages": { "type": "string", "minLength": 1 },
"scored_latest_rows": { "type": "string", "minLength": 1 }
}
}
}
}