postData.json 654 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "type": "object",
  3. "optional": true,
  4. "required": [
  5. "mimeType"
  6. ],
  7. "properties": {
  8. "mimeType": {
  9. "type": "string"
  10. },
  11. "text": {
  12. "type": "string"
  13. },
  14. "params": {
  15. "type": "array",
  16. "required": [
  17. "name"
  18. ],
  19. "properties": {
  20. "name": {
  21. "type": "string"
  22. },
  23. "value": {
  24. "type": "string"
  25. },
  26. "fileName": {
  27. "type": "string"
  28. },
  29. "contentType": {
  30. "type": "string"
  31. },
  32. "comment": {
  33. "type": "string"
  34. }
  35. }
  36. },
  37. "comment": {
  38. "type": "string"
  39. }
  40. }
  41. }