comment.json 359 B

1234567891011121314151617
  1. {
  2. "name": "comment",
  3. "type": "object",
  4. "properties": {
  5. "comment-person": {
  6. "required": false,
  7. "type": "object",
  8. "description": "The person associated with this comment. Should fit the person schema."
  9. },
  10. "comment-text": {
  11. "required": true,
  12. "type": "string",
  13. "description": "The comment itself"
  14. }
  15. }
  16. }