File size: 2,307 Bytes
5faf0a7 c2b7c31 5faf0a7 | 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 | {
"schema_name": "stats_weapons_json",
"schema_version": 1,
"artifact": "stats/weapons.json",
"format": "json",
"description": "Manifest-derived weapon exposure summary. Counts are sample-level and use active weapons observed in each released POV sample, not full inventory ownership.",
"source_artifacts": [
"manifest.parquet",
"schema/weapons.json"
],
"fields": [
{
"name": "schema_version",
"json_type": "integer",
"value": 1
},
{
"name": "generated_at_utc",
"json_type": "string"
},
{
"name": "weapon_id_names",
"json_type": "string",
"description": "Relative path to the authoritative active_weapon_id enum."
},
{
"name": "sample_count",
"json_type": "integer",
"description": "Number of released POV samples counted from manifest.parquet."
},
{
"name": "primary_weapon_counts",
"json_type": "object",
"description": "Map from active_weapon_id string to number of samples where that id is the primary_weapon_id."
},
{
"name": "weapon_present_counts",
"json_type": "object",
"description": "Map from active_weapon_id string to number of samples where that id appears in weapon_ids_present."
},
{
"name": "top_weapon_cooccurrences",
"json_type": "array",
"description": "Most frequent unordered weapon-id pairs that co-occur within a sample's weapon_ids_present list.",
"items": {
"json_type": "object",
"required_fields": [
"weapon_id_a",
"weapon_id_b",
"count"
]
}
},
{
"name": "notes",
"json_type": "array",
"description": "Human-readable caveats. Must mention that counts are active-weapon/sample-level, not inventory-level."
}
],
"validation": [
"sample_count == row count of manifest.parquet",
"all weapon ids are valid indices into schema/weapons.json active_weapon_id.names",
"primary_weapon_counts excludes id 0 unless unknown samples are explicitly reported",
"weapon_present_counts excludes id 0",
"top_weapon_cooccurrences are unordered pairs with weapon_id_a < weapon_id_b",
"no Steam IDs, player names, match IDs, sample keys, or raw demo identifiers are present"
]
}
|