123456789101112131415161718 |
- {
- "name": "person",
- "type": "object",
- "description": "A person",
- "properties": {
- "person-email": {
- "required": true,
- "type": "string",
- "description": "The email of the person who reported the bug"
- },
- "person-name": {
- "required": true,
- "type": "string",
- "description": "The name of the person who reported the bug."
- }
- }
- }
|