-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsession.welcome.response.json
More file actions
82 lines (82 loc) · 2.4 KB
/
session.welcome.response.json
File metadata and controls
82 lines (82 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$id": "https://gabp.dev/schema/1.0/methods/session.welcome.response.json",
"$schema": "https://json-schema.org/draft-07/schema#",
"title": "session/welcome Response",
"description": "Response schema for successful session initialization",
"type": "object",
"required": ["v", "id", "type", "result"],
"properties": {
"v": {
"const": "gabp/1",
"description": "Protocol version identifier"
},
"id": {
"type": "string",
"format": "uuid",
"description": "Request identifier this response corresponds to"
},
"type": {
"const": "response",
"description": "Message type"
},
"result": {
"type": "object",
"required": ["agentId", "app", "capabilities", "schemaVersion"],
"properties": {
"agentId": {
"type": "string",
"minLength": 1,
"description": "Unique identifier for the mod/agent instance"
},
"app": {
"type": "object",
"required": ["name", "version"],
"properties": {
"name": {
"type": "string",
"minLength": 1,
"description": "Application or game name"
},
"version": {
"type": "string",
"minLength": 1,
"description": "Application or game version"
}
},
"additionalProperties": false,
"description": "Host application information"
},
"capabilities": {
"$ref": "../common/capabilities.schema.json",
"description": "Supported features and methods"
},
"schemaVersion": {
"type": "string",
"pattern": "^1\\.\\d+(?:\\.\\d+)?$",
"description": "GABP schema version supported"
},
"serverInfo": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Server/mod name"
},
"version": {
"type": "string",
"description": "Server/mod version"
},
"author": {
"type": "string",
"description": "Server/mod author"
}
},
"additionalProperties": false,
"description": "Optional server/mod information"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}