Skip to content

谱面信息

示例

json
{
  "constant": 6.0,
  "notes": 1452,
  "addedAt": "2019-05-23T08:00:00+08:00",
  "version": "1.0.0"
}

JSON Schema

json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://arcaeaoffline.sevive.xyz/schemas/definitions/chart-info.json",
  "title": "Arcaea Offline Definitions - ChartInfo",
  "type": "object",
  "properties": {
    "constant": {
      "type": "number",
      "minimum": 0.0,
      "examples": [9.8, 12.0]
    },
    "notes": {
      "type": "integer",
      "minimum": 0,
      "examples": [1368, 1644]
    },
    "addedAt": {
      "type": "string",
      "format": "date-time"
    },
    "version": {
      "type": "string",
      "examples": ["6.0.0"]
    }
  },
  "required": ["constant", "addedAt"]
}