Skip to content

难度(本地化对象)

难度(本地化对象)。

示例

json
{
  "songId": "test",
  "ratingClass": 3,
  "lang": "zh-Hans",
  "title": "测试如果不歪",
  "artist": "虚空(最终悼管)"
}

JSON Schema

json
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://arcaeaoffline.sevive.xyz/schemas/data-interchange-schemas/v5/difficulty-localization.json",
  "title": "DifficultyLocalization",
  "description": "Arcaea Offline Data Interchange Schemas Version 5 - DifficultyLocalization",
  "type": "object",
  "properties": {
    "songId": {
      "type": "string"
    },
    "ratingClass": {
      "type": "integer",
      "minimum": 0
    },
    "lang": {
      "type": "string",
      "description": "The language code",
      "examples": ["ja", "zh-Hans"]
    },
    "title": {
      "type": "string"
    },
    "artist": {
      "type": "string"
    }
  },
  "required": ["songId", "ratingClass", "lang"]
}