Skip to content

Commit

Permalink
docs: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
duartealexf committed Jan 13, 2025
1 parent ec9ba6f commit abc7587
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ It parses and delivers an **array of JSON Schema documents** (one for each parse
"title": "users",
"description": "All system users",
"type": "object",
"required": ["id", "nickname", "created_at"],
"required": [
"id",
"nickname",
"created_at"
],
"definitions": {
"id": {
"$comment": "primary key",
Expand All @@ -69,7 +73,8 @@ It parses and delivers an **array of JSON Schema documents** (one for each parse
"type": "string"
},
"created_at": {
"type": "string"
"type": "string",
"default": "CURRENT_TIMESTAMP"
},
"updated_at": {
"type": "string"
Expand Down Expand Up @@ -107,7 +112,7 @@ And an array of tables in a compact JSON format:
"name": "id",
"type": {
"datatype": "int",
"width": 11
"displayWidth": 11
},
"options": {
"nullable": false,
Expand Down Expand Up @@ -167,10 +172,10 @@ And an array of tables in a compact JSON format:
{
"columns": [
{
"column": "nickname"
"column": "nickname",
"length": 255
}
],
"name": "unq_nick"
]
}
],
"options": {
Expand Down

0 comments on commit abc7587

Please sign in to comment.