Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

dataQuality should be encoded as a boolean in JSON, not a string #56

Merged
merged 1 commit into from
Jun 25, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/catalog-sample-extended.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"frequency": "one-time",
"language": "English",
"granularity": "",
"dataQuality": "true",
"dataQuality": true,
"theme": "education",
"references": "http://nces.ed.gov/ccd/data/txt/psu091alay.txt",
"landingPage": "http://ed.gov/developer",
Expand Down
4 changes: 2 additions & 2 deletions schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,9 @@ Field | title
----- | -----
**Cardinality** | (0,1)
**Required** | No
**Accepted Values** | Must be one of the following: true, false
**Accepted Values** | Must be a boolean value of `true` or `false`
**Usage Notes** | Indicates whether a dataset
**Example** | `{"dataQuality":"true"}`
**Example** | `{"dataQuality":true}`

{.table .table-striped}
**Field** | **category**
Expand Down