Cheatography
https://cheatography.com
Types
array |
"type": "array" |
float |
"type": "number" |
integer |
"type": "integer" |
object |
"type": "object" |
string |
"type": "string" |
boolean |
"type": "boolean" |
null |
"type": "null" |
|
|
{ "type" : "array" }
list |
"items": {} |
tuple |
"items": [{},...] |
additional items |
"additionalItems": false |
minimum items |
minItems: 1 |
maximum items |
maxItems: 2 |
unique items |
uniqueItems: true |
additional items should not be used if items is only a single schema
{"type": "object"}
Key-Value Pair Description |
"properties": {} |
Don't allow unnamed fields |
"additionalProperties": false |
Require fields to be present |
"required": ["key", "key"] |
|
Created By
https://github.com/waylandhe
Metadata
Favourited By
Comments
No comments yet. Add yours below!
Add a Comment
More Cheat Sheets by Wayland He