-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
bill dirks
committed
Apr 9, 2019
1 parent
d399ee7
commit a566ff8
Showing
4 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/CityofLosAngeles/mobility-data-specification/master/provider/versions.json", | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"title": "The MDS Provider Schema, versions payload", | ||
"type": "object", | ||
"definitions": {}, | ||
"required": [ | ||
"data" | ||
], | ||
"properties": { | ||
"version": { | ||
"$ref": "#/definitions/version" | ||
}, | ||
"data": { | ||
"$id": "#/properties/data", | ||
"type": "object", | ||
"title": "The page of data", | ||
"required": [ | ||
"versions" | ||
], | ||
"properties": { | ||
"versions": { | ||
"$id": "#/properties/data/properties/versions", | ||
"type": "array", | ||
"title": "The versions Schema", | ||
"items": { | ||
"type": "string", | ||
"pattern": "^0\\.[0-9]$" | ||
} | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"links": { | ||
"$ref": "#/definitions/links" | ||
} | ||
}, | ||
"additionalProperties": false | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/CityofLosAngeles/mobility-data-specification/master/provider/versions.json", | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"title": "The MDS Provider Schema, versions payload", | ||
"type": "object", | ||
"definitions": {}, | ||
"required": [ | ||
"data" | ||
], | ||
"properties": { | ||
"version": { | ||
"$ref": "#/definitions/version" | ||
}, | ||
"data": { | ||
"$id": "#/properties/data", | ||
"type": "object", | ||
"title": "The page of data", | ||
"required": [ | ||
"versions" | ||
], | ||
"properties": { | ||
"versions": { | ||
"$id": "#/properties/data/properties/versions", | ||
"type": "array", | ||
"title": "The versions Schema", | ||
"items": { | ||
"type": "string", | ||
"pattern": "^0\\.[0-9]$" | ||
} | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"links": { | ||
"$ref": "#/definitions/links" | ||
} | ||
}, | ||
"additionalProperties": false | ||
} |