1234567891011121314151617 |
- {
- "name": "comment",
- "type": "object",
- "properties": {
- "comment-person": {
- "required": false,
- "type": "object",
- "description": "The person associated with this comment. Should fit the person schema."
- },
- "comment-text": {
- "required": true,
- "type": "string",
- "description": "The comment itself"
- }
- }
- }
|