forked from alloc8or/gta5-nativedb-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
43 lines (43 loc) · 1022 Bytes
/
schema.json
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
{
"type": "object",
"patternProperties": {
"^[A-Z_]+[0-9]*$": {
"type": "object",
"patternProperties": {
"^0x[0-9A-F]{16}$": {
"type": "object",
"properties": {
"name": { "type": "string" },
"jhash": { "type": "string" },
"comment": { "type": "string" },
"params": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": { "type": "string" },
"name": { "type": "string" }
},
"required": ["type", "name"],
"additionalProperties": false
}
},
"return_type": { "type": "string" },
"build": { "type": "string" },
"unused": { "type": "boolean" },
"old_names": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["name", "jhash", "comment", "params", "return_type", "build"],
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}