This commit is contained in:
DaanV2
2021-06-08 21:05:20 +02:00
parent 87f45e1505
commit f5ab3767ab
35 changed files with 1333 additions and 52 deletions

View File

@@ -10,5 +10,17 @@
"object": {
"prefix": "json.object",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"object\", \n\"additionalProperties\": false,\n\"properties\": {}"
},
"number": {
"prefix": "json.number",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"number\", \n\"minimum\": 0"
},
"integer": {
"prefix": "json.integer",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"integer\", \n\"minimum\": 0"
},
"string": {
"prefix": "json.string",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"string\""
}
}