You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reaction.json 690B

1234567891011121314151617181920212223242526272829
  1. {
  2. "title": "Reaction",
  3. "description": "Reaction associated to an issue or a comment.",
  4. "type": "object",
  5. "additionalProperties": false,
  6. "properties": {
  7. "user_id": {
  8. "description": "Unique identifier of the user who authored the reaction.",
  9. "type": "number"
  10. },
  11. "user_name": {
  12. "description": "Name of the user who authored the reaction.",
  13. "type": "string"
  14. },
  15. "content": {
  16. "description": "Representation of the reaction",
  17. "type": "string"
  18. }
  19. },
  20. "required": [
  21. "user_id",
  22. "content"
  23. ],
  24. "$schema": "http://json-schema.org/draft-04/schema#",
  25. "$id": "http://example.com/reaction.json",
  26. "$$target": "reaction.json"
  27. }