From e6f95ec227acf94784c2d68d85a4ae0b256b3148 Mon Sep 17 00:00:00 2001 From: snoweuph <snow+git@euph.email> Date: Wed, 19 Feb 2025 07:23:08 +0000 Subject: [PATCH] Delete schemas/ws/server/chat.json --- schemas/ws/server/chat.json | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 schemas/ws/server/chat.json diff --git a/schemas/ws/server/chat.json b/schemas/ws/server/chat.json deleted file mode 100644 index 8b9485a..0000000 --- a/schemas/ws/server/chat.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2019-09/schema", - "$id": "http://example.com/example.json", - "type": "object", - "default": {}, - "title": "Root Schema", - "required": ["authorId", "msg"], - "properties": { - "authorId": { - "type": "integer", - "default": 0, - "title": "The Steam 64bit user ID", - "examples": [18446744073709551615, 0], - "maximum": 18446744073709551615, - "minimum": 0 - }, - "msg": { - "type": "string", - "default": "", - "title": "The message sent", - "examples": ["Hello World!", "GG"], - "maxLength": 256, - "minLength": 1 - } - }, - "examples": [ - { - "authorId": 18446744073709551615, - "msg": "Hello World!" - }, - { - "authorId": 0, - "msg": "GG" - } - ] -} \ No newline at end of file