Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
JSON
Short JSON Schema
Commits
db9f913e
Commit
db9f913e
authored
Oct 18, 2019
by
Paul Warren
Browse files
Initial documentation
parent
8db866fc
Pipeline
#107
canceled with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
README.md
0 → 100644
View file @
db9f913e
An object with a single, mandatory string property:
```
{
thing:$
}
```
e.g.
```
.json
{
"thing": "this is valid"
}
```
Other simple types:
```
{
optionalNumberProperty?:#,
booleanProperty:B,
nullableString:$~
}
```
Objects:
```
{
thing:{ -- comments after '--'
subThing1:$,
subThing2:#,
... -- additionalProperties = True (default is False)
}
}
```
Arrays:
```
{
arrayOfNumbers: [#]
}
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment