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