Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfitz committed May 21, 2020
1 parent a7f6aad commit 6f14d2f
Show file tree
Hide file tree
Showing 2 changed files with 408 additions and 2 deletions.
15 changes: 13 additions & 2 deletions schemas/dictionary.json
Expand Up @@ -454,13 +454,16 @@
"header": {
"$ref": "#/definitions/header"
},
"commentChar": {
"$ref": "#/definitions/commentChar"
},
"caseSensitiveHeader": {
"$ref": "#/definitions/caseSensitiveHeader"
}
},
"examples": [
"{\n \"dialect\": {\n \"delimiter\": \";\"\n }\n}\n",
"{\n \"dialect\": {\n \"delimiter\": \"\\t\",\n \"quoteChar\": \"'\"\n }\n}\n"
"{\n \"dialect\": {\n \"delimiter\": \"\\t\",\n \"quoteChar\": \"'\",\n \"commentChar\": \"#\"\n }\n}\n"
]
},
"csvddfVersion": {
Expand All @@ -469,7 +472,7 @@
"type": "number",
"default": 1.2,
"examples:": [
"{\n \"csvddfVersion\": \"1.2\"\n} \n"
"{\n \"csvddfVersion\": \"1.2\"\n}\n"
]
},
"delimiter": {
Expand Down Expand Up @@ -545,6 +548,14 @@
"{\n \"header\": true\n}\n"
]
},
"commentChar": {
"title": "Comment Character",
"description": "Specifies a character sequence causing the rest of the line after it to be ignored.",
"type": "string",
"examples": [
"{\n \"commentChar\": \"#\"\n}\n"
]
},
"caseSensitiveHeader": {
"title": "Case Sensitive Header",
"description": "Specifies if the case of headers is meaningful.",
Expand Down

0 comments on commit 6f14d2f

Please sign in to comment.