File size: 5,005 Bytes
5faf0a7 c2b7c31 5faf0a7 c2b7c31 5faf0a7 c2b7c31 5faf0a7 c2b7c31 5faf0a7 c2b7c31 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | {
"schema_name": "stats_quality_json",
"schema_version": 1,
"artifact": "stats/quality.json",
"format": "json",
"description": "Release QA and privacy validation summary. This audit file records schema, completeness, source filtering, integrity, privacy, and media validation counts.",
"source_artifacts": [
"manifest.parquet",
"round_index.parquet",
"match_index.parquet",
"sample_index.parquet",
"row_index.parquet",
"shards_manifest_720p.json",
"shards_manifest_360p.json",
"match_states/*.parquet",
"match_events/*.parquet",
"stats/media.json",
"release/manifest_locks/counterstrike-1k_v12_final_qa_merge_log.json"
],
"fields": [
{
"name": "schema_version",
"json_type": "integer",
"value": 1
},
{
"name": "generated_at_utc",
"json_type": "string"
},
{
"name": "schema_validation",
"json_type": "object"
},
{
"name": "completeness",
"json_type": "object"
},
{
"name": "source_filtering",
"json_type": "object",
"description": "Pre-release render/curation accounting for excluded or remapped source rows, including partial renders and non-player POV streams."
},
{
"name": "integrity",
"json_type": "object"
},
{
"name": "privacy",
"json_type": "object"
},
{
"name": "media",
"json_type": "object"
},
{
"name": "status",
"json_type": "string",
"valid_values": [
"pass",
"fail"
]
}
],
"schema_validation_fields": [
"manifest_rows",
"round_index_rows",
"match_index_rows",
"sample_index_rows",
"row_index_rows",
"schema_errors",
"missing_required_fields",
"invalid_enum_values"
],
"completeness_fields": [
"missing_sample_members",
"missing_video_members",
"missing_actions_members",
"missing_events_members",
"missing_metadata_members",
"incomplete_rounds",
"matches_with_less_than_10_povs",
"matches_with_any_incomplete_round",
"round_pov_count_histogram",
"per_match_mean_povs_per_round"
],
"source_filtering_fields": [
"source",
"active_exclusion_entries",
"entry_scope_counts",
"complete_10pov",
"full_demo_10pov",
"source_render_rows_scanned",
"source_demos_scanned",
"source_render_state_counts",
"source_demo_succeeded_pov_count_histogram",
"source_round_succeeded_pov_count_histogram",
"demos_with_partial_render_success",
"demos_pending_rerender_or_requeue",
"demos_unsupported_by_renderer_or_parser",
"demos_with_extra_non_player_povs",
"rounds_with_extra_non_player_povs",
"extra_non_player_povs_filtered",
"render_rows_excluded_non_player_pov"
],
"source_filtering_definitions": {
"source_demo_succeeded_pov_count_histogram": "Histogram of distinct succeeded POV ids per source demo before release filtering.",
"source_round_succeeded_pov_count_histogram": "Histogram of distinct succeeded POV ids per source round before release filtering.",
"demos_with_extra_non_player_povs": "Demos whose source rows expose more than 10 POV streams, typically coach/spectator/non-player streams.",
"extra_non_player_povs_filtered": "Non-player POV ids excluded before public sample keys and indices are built."
},
"integrity_fields": [
"member_sha256_checked",
"member_sha256_failed",
"shard_sha256_checked",
"shard_sha256_failed",
"tar_offsets_checked",
"tar_offsets_failed"
],
"privacy_fields": [
"denied_identity_fields_found",
"steam_id_fields_found",
"xuid_fields_found",
"account_id_fields_found",
"profile_url_fields_found",
"player_name_fields_found",
"raw_hltv_fields_found",
"raw_demo_path_fields_found",
"raw_chat_text_fields_found"
],
"media_fields": [
"videos_checked",
"videos_decode_failed",
"audio_missing",
"audio_non_stereo",
"pixel_format_mismatch",
"duration_mismatch"
],
"validation": [
"schema_validation.schema_errors == 0",
"schema_validation.missing_required_fields == 0",
"schema_validation.invalid_enum_values == 0",
"completeness.missing_sample_members == 0",
"completeness.incomplete_rounds == 0",
"completeness.matches_with_less_than_10_povs == 0",
"completeness.matches_with_any_incomplete_round == 0",
"completeness.round_pov_count_histogram has only key 10 after release filtering",
"source_filtering records active human-QA exclusions and, when available, partial, unsupported, or extra-POV source rows excluded from release",
"integrity.member_sha256_failed == 0",
"integrity.shard_sha256_failed == 0",
"integrity.tar_offsets_failed == 0",
"privacy.denied_identity_fields_found == 0",
"privacy.raw_chat_text_fields_found == 0",
"media.videos_decode_failed == 0",
"media.audio_missing == 0",
"media.audio_non_stereo == 0",
"status == pass"
]
}
|