-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathschema.json
More file actions
99 lines (99 loc) · 2.41 KB
/
schema.json
File metadata and controls
99 lines (99 loc) · 2.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"schema_version": 4,
"default_locale": "en",
"locales": [
"en",
"de",
"es",
"fr",
"it",
"ja",
"ko",
"pl",
"pt_br",
"ru",
"tr",
"zh_hans",
"zh_hant"
],
"files": {
"asset_index.csv": {
"type": "table",
"primary_key": [
"asset_id"
],
"fields": {
"asset_id": {
"type": "integer",
"description": "Stable ARC Raiders game asset ID."
},
"asset_name": {
"type": "string",
"description": "Resolved internal game asset name used as the public asset key."
},
"display_name_en": {
"type": "string",
"description": "Default English display name when resolved from game localization data."
},
"description_en": {
"type": "string",
"description": "Default English description when resolved from game localization data."
}
}
},
"asset_localizations.csv": {
"type": "table",
"primary_key": [
"asset_id",
"locale"
],
"foreign_keys": [
{
"fields": [
"asset_id"
],
"references": [
"asset_index.csv:asset_id"
]
}
],
"fields": {
"asset_id": {
"type": "integer",
"description": "Asset ID matching asset_index.csv."
},
"locale": {
"type": "string",
"description": "Locale code for this localization row."
},
"display_name": {
"type": "string",
"description": "Display name for this asset and locale, blank if unavailable."
},
"description": {
"type": "string",
"description": "Description for this asset and locale, blank if unavailable."
}
}
},
"images": {
"type": "directory",
"primary_key": [
"asset_name"
],
"foreign_keys": [
{
"fields": [
"asset_name"
],
"references": [
"asset_index.csv:asset_name"
]
}
],
"path_pattern": "images/{asset_name}.png",
"wide_variant_path_pattern": "images/{asset_name}_wide.png",
"description": "PNG images keyed by asset_name. For weapon assets, a wide equipped-view image may also exist at images/{asset_name}_wide.png. Images are shared across locales."
}
}
}