We believe these values and principles, taken together, describe the most effective, ethical, and modern approach to data teamwork.
Maximize diversity, connectivity, and accessibility among data projects, collaborators, and outputs.
| { | |
| "fields": [{ | |
| "name": "id", | |
| "type": "string", | |
| "constraints": { | |
| "required": true, | |
| "unique": true | |
| } | |
| }, | |
| { |
The Data Package version format follows the Semantic Versioning specification format: MAJOR.MINOR.PATCH
Semantic Versioning helps developers manage dependencies between software packages. The version numbers, and the way they change, convey meaning about the underlying code and what has been modified from one version to the next.
In Data Packages this concept is applied to data.
The version numbers, and the way they change, convey meaning how the data package has been modified from one version to the next.
| { | |
| "fields": [ | |
| { | |
| "name": "Mobile", | |
| "title": "Australian Mobile Phone Number", | |
| "constraints": { | |
| "required": false, | |
| "pattern": "^04[0-9]{8}" | |
| } | |
| } |
| { | |
| "fields": [ | |
| ] | |
| } |
| { | |
| "name": "Mobile", | |
| "title": "Australian Mobile Phone Number", | |
| "constraints": { | |
| "required": false, | |
| "pattern": "^04[0-9]{8}" | |
| } | |
| } |
| { | |
| "name": "Postcode", | |
| "title": "Australian Post Code", | |
| "constraints": { | |
| "required": true, | |
| "pattern": "^(0[289][0-9]{2})|([1345689][0-9]{3})|(2[0-8][0-9]{2})|(290[0-9])|(291[0-4])|(7[0-4][0-9]{2})|(7[8-9][0-9]{2})$" | |
| } | |
| } |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |