Last active
April 21, 2022 16:08
-
-
Save datadavev/72e4de9b44bc5497a81f35e5a6aa7348 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"fields":[ | |
{ | |
"name":"id", | |
"title": "Identifier", | |
"type": "string", | |
"description":"Unique identifier for each row of the table" | |
}, | |
{ | |
"name":"label", | |
"title":"A label for the field", | |
"type": "string", | |
"description": "Label for the field, a value from a controlled vocabulary" | |
}, | |
{ | |
"name":"boolval", | |
"title":"Boolean value", | |
"type":"boolean", | |
"description":"Boolean value examples" | |
}, | |
{ | |
"name":"intval", | |
"title":"Int value", | |
"type":"integer", | |
"description":"Integer value examples" | |
}, | |
{ | |
"name":"floatval", | |
"title":"Float value", | |
"type":"number", | |
"description":"Floating point value examples" | |
}, | |
{ | |
"name": "dateval", | |
"title":"Time Created", | |
"type": "datetime", | |
"description": "Timestamp for when the record was created" | |
}, | |
{ | |
"name":"durationval", | |
"title":"Duration value", | |
"type":"duration", | |
"description":"Duration value examples" | |
}, | |
{ | |
"name":"arrayval", | |
"title":"Array value", | |
"type":"array", | |
"description":"Array value examples" | |
}, | |
{ | |
"name":"pointval", | |
"title":"Geopoint value", | |
"type":"geopoint", | |
"description":"Geopoint value examples" | |
}, | |
{ | |
"name": "geoval", | |
"title": "Geojson location value", | |
"type":"geojson", | |
"description":"GeoJSON entry for the location" | |
}, | |
{ | |
"name": "vocabval", | |
"title": "Controlled", | |
"type": "string", | |
"description": "Enumerated set of possible values", | |
"constraints":{ | |
"enum": [ | |
"val1", | |
"val2", | |
"val3", | |
"val23" | |
] | |
} | |
} | |
], | |
"primaryKey":"id" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment