person.json 383 B

123456789101112131415161718
  1. {
  2. "name": "person",
  3. "type": "object",
  4. "description": "A person",
  5. "properties": {
  6. "person-email": {
  7. "required": true,
  8. "type": "string",
  9. "description": "The email of the person who reported the bug"
  10. },
  11. "person-name": {
  12. "required": true,
  13. "type": "string",
  14. "description": "The name of the person who reported the bug."
  15. }
  16. }
  17. }