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

Commit 43dfd21

Browse files
author
James McKinney
committed
dataQuality should be encoded as a boolean in JSON, not a string
1 parent 26b771a commit 43dfd21

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: examples/catalog-sample-extended.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"frequency": "one-time",
5151
"language": "English",
5252
"granularity": "",
53-
"dataQuality": "true",
53+
"dataQuality": true,
5454
"theme": "education",
5555
"references": "http://nces.ed.gov/ccd/data/txt/psu091alay.txt",
5656
"landingPage": "http://ed.gov/developer",

Diff for: schema.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,9 @@ Field | title
278278
----- | -----
279279
**Cardinality** | (0,1)
280280
**Required** | No
281-
**Accepted Values** | Must be one of the following: true, false
281+
**Accepted Values** | Must be a boolean value of `true` or `false`
282282
**Usage Notes** | Indicates whether a dataset
283-
**Example** | `{"dataQuality":"true"}`
283+
**Example** | `{"dataQuality":true}`
284284

285285
{.table .table-striped}
286286
**Field** | **category**

0 commit comments

Comments
 (0)