postData.json (737B)
1 { 2 "$id": "postData.json#", 3 "$schema": "http://json-schema.org/draft-06/schema#", 4 "type": "object", 5 "optional": true, 6 "required": [ 7 "mimeType" 8 ], 9 "properties": { 10 "mimeType": { 11 "type": "string" 12 }, 13 "text": { 14 "type": "string" 15 }, 16 "params": { 17 "type": "array", 18 "required": [ 19 "name" 20 ], 21 "properties": { 22 "name": { 23 "type": "string" 24 }, 25 "value": { 26 "type": "string" 27 }, 28 "fileName": { 29 "type": "string" 30 }, 31 "contentType": { 32 "type": "string" 33 }, 34 "comment": { 35 "type": "string" 36 } 37 } 38 }, 39 "comment": { 40 "type": "string" 41 } 42 } 43 }