歌曲(本地化对象)
歌(Aア)。
示例
json
{
"id": "test",
"lang": "zh-Hans",
"title": "测试如果歪",
"source": "阿卡二",
"hasJacket": false
}JSON Schema
json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://arcaeaoffline.sevive.xyz/schemas/data-interchange-schemas/v5/song-localization.json",
"title": "SongLocalization",
"description": "Arcaea Offline Data Interchange Schemas Version 5 - SongLocalization",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The parent song's id"
},
"lang": {
"type": "string",
"description": "The language code",
"examples": ["ja", "zh-Hans"]
},
"title": {
"type": "string"
},
"source": {
"type": "string"
},
"hasJacket": {
"type": "boolean",
"description": "Whether this language has specialized jacket"
}
},
"required": ["id", "lang"]
}