星穹铁道抽卡记录标准 v1.0
标准化文档大约 3 分钟
星穹铁道抽卡记录标准 v1.0
Star Rail GachaLog Format standard (SRGF) v1.0
SRGF 标准使用声明
应用必须在同时支持 SRGF 数据格式导入和导出功能并在相关功能区域或文档中提供跳转至 UIGF-Org 的超链接后声明支持 SRGF 格式
仅包含导入或导出功能降低了用户数据可流通性,且将数据置于用户不可控的风险中,不符合 UIGF-Org 设计的初衷。
Deprecated Version
该标准已过时,UIGF v4.0 替代了该版本的标准。
最新的 UIGF 4.0 版本继承并合并了 UIGF 3.0 和 SRGF 标准的功能,并增加了对绝区零抽卡数据的支持。
UIGF 4.0 不具备对旧有标准的向下兼容性,且与旧有标准的认证相互独立。如果你是应用开发者,可以根据文档中定义的格式实现对旧版格式的导入兼容。
Json 示例
{
"info": {
"uid": "xxxxxxxxx",
"lang": "zh-cn",
"region_time_zone": 8,
"export_timestamp": 1684124992,
"export_app": "xxx",
"export_app_version": "xxxxx",
"srgf_version": "v1.0"
},
"list": [
{
"gacha_id": "2003",
"gacha_type": "x",
"item_id": "10000065",
"count": "1",
"time": "2023-05-07 10:47:00",
"name": "xxx",
"item_type": "xxxx",
"rank_type": "4",
"id": "1683425160001357994"
}
]
}
Json Schema
注意字段类型
请各位开发者务必尊重 Schema 内定义的字段类型。使用错误的类型可能会导致其它由强类型编程语言制成的工具在解析 Json 文件时产生错误,进而导致数据转移失败。
为了避免这类问题,我们建议您针对 SRGF 格式设计专用的 struct,或善用 JsonNumberHandling.WriteAsString
等方法。同时,设计相关的单元测试以确保导入导出的一致性。
我们也提供 SRGF 格式校验工具来帮助你校验 Json 文件。
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"info": {
"type": "object",
"properties": {
"uid": {
"type": "string"
},
"lang": {
"type": "string",
"description": "语言 languagecode2-country/regioncode2"
},
"region_time_zone": {
"type": "number",
"description": "时区"
},
"export_timestamp": {
"type": "number",
"description": "导出 UNIX 时间戳"
},
"export_app": {
"type": "string",
"description": "导出的 App 名称"
},
"export_app_version": {
"type": "string",
"description": "导出此份记录的 App 版本号"
},
"srgf_version": {
"type": "string",
"description": "所应用的 SRGF 的版本,包含此字段以防 SRGF 出现中断性变更时,App 无法处理"
}
},
"description": "包含导出方定义的基本信息",
"required": [
"srgf_version",
"uid",
"lang",
"region_time_zone"
]
},
"list": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gacha_id": {
"type": "string",
"description": "卡池 Id"
},
"gacha_type": {
"type": "string",
"description": "卡池类型",
"enum": [
"1",
"2",
"11",
"12"
]
},
"item_id": {
"type": "string",
"description": "物品 Id"
},
"count": {
"type": "string",
"description": "数量,通常为1"
},
"time": {
"type": "string",
"description": "获取物品的时间,应为「抽卡记录网页上显示的原始时间字符串」而非任何转换过的值。如果设备时区与服务器时区不一致,任意类型转换将会导致时区转换出现误差(除非应用进行了特殊处理)。"
},
"name": {
"type": "string",
"description": "物品名称"
},
"item_type": {
"type": "string",
"description": "物品类型"
},
"rank_type": {
"type": "string",
"description": "物品星级"
},
"id": {
"type": "string",
"description": "内部 Id"
}
},
"required": [
"gacha_id",
"gacha_type",
"item_id",
"time",
"id"
]
},
"description": "包含卡池记录"
}
},
"required": [
"info",
"list"
]
}