changeRoomDescription.json 485 B

123456789101112131415161718192021
  1. {
  2. "type" : "object",
  3. "$schema" : "http://json-schema.org/draft-06/schema",
  4. "title" : "Lobby protocol: changeRoomDescription",
  5. "description" : "Sent by server when currently selected map changes",
  6. "required" : [ "type", "description" ],
  7. "additionalProperties" : false,
  8. "properties" : {
  9. "type" :
  10. {
  11. "type" : "string",
  12. "const" : "changeRoomDescription"
  13. },
  14. "description" :
  15. {
  16. "type" : "string",
  17. "description" : "Human-readable description of the room"
  18. }
  19. }
  20. }