build(stage1): prepare independent human review

This commit is contained in:
Jinotech
2026-09-20 09:29:44 +12:00
parent 31ca2cf0da
commit 8f5cbc9415
13 changed files with 1078 additions and 515 deletions
+75
View File
@@ -0,0 +1,75 @@
"""Requirement-by-requirement Gate 1 acceptance audit."""
from __future__ import annotations
import csv
import hashlib
import json
from pathlib import Path
ROOT = Path(__file__).resolve().parents[2]
STAGE1 = ROOT / "research" / "stage1"
def rows(name: str) -> list[dict[str, str]]:
with (STAGE1 / name).open(encoding="utf-8-sig", newline="") as handle:
return list(csv.DictReader(handle))
def main() -> int:
checks = {}
unmet = []
items = rows("item_bank.csv")
item_required = {"item_version_id", "item_family_id", "source_variable", "question_text", "text_hash", "construct", "time_window", "response_type", "language", "survey_id", "component_id", "page_or_section", "review_status"}
item_fields = set(items[0]) if items else set()
item_ok = len(items) == 84 and len({r["item_version_id"] for r in items}) == 84 and item_required <= item_fields and all((r["source_file"] or r["source_url"]) and r["population"] for r in items) and all(r["text_hash"] == hashlib.sha256(r["question_text"].encode("utf-8")).hexdigest() for r in items)
checks["item_bank"] = {"passed": item_ok, "rows": len(items)}
if not item_ok: unmet.append("item_bank_contract")
dictionary = rows("response_dictionary.csv")
dictionary_required = {"item_version_id", "raw_code", "raw_label", "canonical_code", "missing_type", "derivation_rule", "source_file", "source_url", "page_or_section", "review_status"}
dictionary_ok = len(dictionary) == 396 and dictionary_required <= set(dictionary[0]) and {r["item_version_id"] for r in dictionary} == {r["item_version_id"] for r in items}
checks["response_dictionary"] = {"passed": dictionary_ok, "rows": len(dictionary)}
if not dictionary_ok: unmet.append("response_dictionary_contract")
designs = rows("survey_design.csv")
design_required = {"survey_id", "component_id", "weight_field", "psu_field", "stratum_field", "variance_method", "design_source", "review_status"}
design_ok = len(designs) == 28 and len({(r["survey_id"], r["component_id"]) for r in designs}) == 28 and design_required <= set(designs[0]) and all(all(r[k] for k in design_required) for r in designs)
checks["survey_design"] = {"passed": design_ok, "rows": len(designs)}
if not design_ok: unmet.append("survey_design_contract")
ontology_ok = (STAGE1 / "construct_ontology.yaml").exists()
checks["construct_ontology"] = {"passed": ontology_ok}
if not ontology_ok: unmet.append("construct_ontology_missing")
manifest = json.loads((STAGE1 / "responses_long_manifest.json").read_text(encoding="utf-8"))
output = ROOT / manifest["output_file"]
response_ok = output.exists() and manifest["rows"] == manifest["unique_response_keys"] == 919863 and manifest["item_instances_with_rows"] == 80
checks["responses_long"] = {"passed": response_ok, "rows": manifest["rows"], "items_with_rows": manifest["item_instances_with_rows"]}
if not response_ok: unmet.append("responses_long_contract")
links = rows("item_links.csv")
links_ok = bool(links) and all(r["anchor_status"] == "not_approved" for r in links)
checks["item_links"] = {"passed": links_ok, "rows": len(links), "approved_anchors": sum(r["anchor_status"] != "not_approved" for r in links)}
if not links_ok: unmet.append("item_links_contract")
conflicts = rows("source_conflicts.csv")
conflicts_ok = bool(conflicts) and all(r["status"] for r in conflicts)
checks["source_conflicts"] = {"passed": conflicts_ok, "rows": len(conflicts), "open": sum(r["status"].startswith("open") for r in conflicts)}
if not conflicts_ok: unmet.append("source_conflicts_contract")
human_path = STAGE1 / "human_review_validation.json"
human = json.loads(human_path.read_text(encoding="utf-8")) if human_path.exists() else {}
human_ok = human.get("status") == "passed" and human.get("gate_1_human_review_complete") is True and human.get("reviewer_1") and human.get("reviewer_2") and human.get("reviewer_1") != human.get("reviewer_2")
checks["two_actual_human_reviewers"] = {"passed": bool(human_ok), "evidence_file": str(human_path.relative_to(ROOT)).replace("\\", "/") if human_path.exists() else None}
if not human_ok: unmet.append("two_actual_human_reviewers")
result = {"gate": 1, "status": "passed" if not unmet else "in_progress", "checks": checks, "unmet_requirements": unmet}
(STAGE1 / "gate1_acceptance_audit.json").write_text(json.dumps(result, indent=2, ensure_ascii=False) + "\n", encoding="utf-8")
print(json.dumps(result, indent=2, ensure_ascii=False))
return 0 if not unmet else 1
if __name__ == "__main__":
raise SystemExit(main())
@@ -0,0 +1,55 @@
"""Generate two independent, blank human-review packets and adjudication template."""
from __future__ import annotations
import csv
from pathlib import Path
ROOT = Path(__file__).resolve().parents[2]
STAGE1 = ROOT / "research" / "stage1"
QUEUE = STAGE1 / "primary_outcome_human_review_queue.csv"
EVIDENCE = [
"item_version_id", "survey", "component_id", "construct", "question_text",
"response_dictionary_rows", "population", "language", "source_file", "source_url", "page_or_section",
]
REVIEW = [
"reviewer_name", "reviewer_affiliation", "review_date", "decision",
"wording_verified", "construct_verified", "population_verified", "response_codes_verified",
"skip_logic_verified", "missing_rules_verified", "language_evidence_status",
"corrected_question_text", "corrected_construct", "corrected_population", "corrected_language",
"corrected_response_or_missing_rule", "review_notes", "independence_attestation",
]
def write(path: Path, rows: list[dict[str, str]], fields: list[str]) -> None:
with path.open("w", encoding="utf-8-sig", newline="") as handle:
writer = csv.DictWriter(handle, fieldnames=fields)
writer.writeheader()
writer.writerows(rows)
def main() -> None:
with QUEUE.open(encoding="utf-8-sig", newline="") as handle:
source = list(csv.DictReader(handle))
if len(source) != 84 or len({row["item_version_id"] for row in source}) != 84:
raise AssertionError("Expected 84 unique primary-outcome item instances")
blank = [{**{field: row[field] for field in EVIDENCE}, **{field: "" for field in REVIEW}} for row in source]
write(STAGE1 / "primary_outcome_review_reviewer_1.csv", blank, EVIDENCE + REVIEW)
write(STAGE1 / "primary_outcome_review_reviewer_2.csv", blank, EVIDENCE + REVIEW)
adjudication_fields = [
"item_version_id", "reviewer_1_decision", "reviewer_2_decision", "conflict_reason",
"adjudicator_name", "adjudication_date", "final_decision", "final_question_text",
"final_construct", "final_population", "final_language", "final_response_or_missing_rule",
"adjudication_notes", "adjudicator_attestation",
]
write(STAGE1 / "primary_outcome_review_adjudication.csv", [
{field: (row["item_version_id"] if field == "item_version_id" else "") for field in adjudication_fields}
for row in source
], adjudication_fields)
print({"reviewer_1_rows": len(blank), "reviewer_2_rows": len(blank), "adjudication_rows": len(blank)})
if __name__ == "__main__":
main()
@@ -9,6 +9,7 @@ review requirement and remaining data/design checks are complete.
from __future__ import annotations
import csv
import hashlib
import json
from pathlib import Path
from typing import Any, Iterable
@@ -78,17 +79,18 @@ def build() -> dict[str, int]:
item_fields = [
"item_version_id", "item_family_id", "survey_id", "component_id", "survey", "country",
"year", "scope", "population", "source_variable", "question_text", "construct", "time_window",
"year", "scope", "population", "source_variable", "question_text", "text_hash", "construct", "time_window",
"response_type", "language", "questionnaire_version", "data_availability", "analysis_eligibility",
"source_file", "source_url", "page_or_section", "reviewer_1", "reviewer_2", "review_status", "notes",
]
response_fields = [
"item_version_id", "raw_code", "raw_label", "canonical_code", "missing_type", "is_observed_response",
"derivation_rule", "source_file", "source_url", "review_status",
"derivation_rule", "source_file", "source_url", "page_or_section", "review_status",
]
def add_item(row: dict[str, Any], options: dict[str, str], missing_row: bool = False) -> None:
clean = {field: stringify(row.get(field)) for field in item_fields}
clean["text_hash"] = hashlib.sha256(clean["question_text"].encode("utf-8")).hexdigest()
items.append(clean)
for code, label in options.items():
canonical, missing_type, observed = canonicalize(clean["survey"], clean["construct"], str(code), label)
@@ -102,6 +104,7 @@ def build() -> dict[str, int]:
"derivation_rule": "direct recode; no imputation and no silent conversion of nonresponse to a negative response",
"source_file": clean["source_file"],
"source_url": clean["source_url"],
"page_or_section": clean["page_or_section"],
"review_status": "provisional",
})
if missing_row:
@@ -115,6 +118,7 @@ def build() -> dict[str, int]:
"derivation_rule": "retain as unknown missing; never recode as No/zero without an explicit official rule",
"source_file": clean["source_file"],
"source_url": clean["source_url"],
"page_or_section": clean["page_or_section"],
"review_status": "provisional",
})
review_queue.append({
@@ -201,6 +205,7 @@ def build() -> dict[str, int]:
"namespace_rule": "prefix PSU and stratum with component_id before pooling",
"design_source": f"{component.get('catalog_url', '')}; WHO GSHS methodology and data catalog", "design_status": "source_verified_fields",
"notes": "For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling.",
"review_status": "provisional",
})
# YRBS: source-audited annual items.
@@ -252,6 +257,7 @@ def build() -> dict[str, int]:
"design_source": next(r["data_guide_source_file"] for r in yrbs_rows if str(r["year"]) == year),
"design_status": status,
"notes": "Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.",
"review_status": "provisional",
})
# NSDUH: four youth-module years. Attempt is documented but unavailable locally.
@@ -305,6 +311,7 @@ def build() -> dict[str, int]:
"design_source": "Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",
"design_status": "source_verified",
"notes": "Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs.",
"review_status": "provisional",
})
links = []
@@ -337,7 +344,7 @@ def build() -> dict[str, int]:
write_csv("response_dictionary.csv", responses, response_fields)
write_csv("survey_design.csv", designs, [
"survey_id", "component_id", "survey", "country", "year", "population", "weight_field", "psu_field",
"stratum_field", "variance_method", "namespace_rule", "design_source", "design_status", "notes",
"stratum_field", "variance_method", "namespace_rule", "design_source", "design_status", "review_status", "notes",
])
write_csv("item_links.csv", links, [
"item_pair", "left_item_family_id", "right_item_family_id", "relation_type", "semantic_evidence",
@@ -0,0 +1,43 @@
{
"gate": 1,
"status": "in_progress",
"checks": {
"item_bank": {
"passed": true,
"rows": 84
},
"response_dictionary": {
"passed": true,
"rows": 396
},
"survey_design": {
"passed": true,
"rows": 28
},
"construct_ontology": {
"passed": true
},
"responses_long": {
"passed": true,
"rows": 919863,
"items_with_rows": 80
},
"item_links": {
"passed": true,
"rows": 9,
"approved_anchors": 0
},
"source_conflicts": {
"passed": true,
"rows": 32,
"open": 11
},
"two_actual_human_reviewers": {
"passed": false,
"evidence_file": null
}
},
"unmet_requirements": [
"two_actual_human_reviewers"
]
}
@@ -0,0 +1,17 @@
# Gate 1 primary-outcome human review instructions
Two **different actual people** must independently review all 84 rows. AI output, duplicated names, copied decisions, proxy signatures, or one person completing both files do not satisfy the workflow.
1. Give `primary_outcome_review_reviewer_1.csv` and `primary_outcome_review_reviewer_2.csv` separately to the two reviewers. Do not give either reviewer the other person's decisions before both files are returned.
2. Each reviewer checks the cited questionnaire/codebook evidence, wording, construct, population, response codes, skip logic, missing rules, and language evidence.
3. Allowed decisions are `approve`, `approve_with_correction`, `reject`, and `needs_source`. Verification columns use only `yes` or `no`; language status uses `verified`, `provisional_accepted`, or `insufficient`.
4. Every row must contain the same reviewer name, affiliation, ISO date, and exact independence attestation: `I am a human reviewer and completed this review independently.`
5. After both files are returned, run the validator. Any non-approval, different decision, or correction enters the adjudication file. The adjudicator must be a real person and use the required attestation shown by validator errors.
Validation command:
```powershell
.\.venv-research\Scripts\python.exe research/stage1/validate_human_reviews.py research/stage1/primary_outcome_review_reviewer_1.csv research/stage1/primary_outcome_review_reviewer_2.csv --adjudication research/stage1/primary_outcome_review_adjudication.csv
```
The blank templates are intentionally versioned. Completed files contain personal review attestations and should be inspected before committing or sharing.
+85 -85
View File
@@ -1,85 +1,85 @@
item_version_id,item_family_id,survey_id,component_id,survey,country,year,scope,population,source_variable,question_text,construct,time_window,response_type,language,questionnaire_version,data_availability,analysis_eligibility,source_file,source_url,page_or_section,reviewer_1,reviewer_2,review_status,notes
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::2023_MAR_GSHS_v01,2023_MAR_GSHS_v01::mar_fez2023,GSHS,Morocco,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,French; English reference; actual administered language not established,2023_MAR_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q32,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::2023_MAR_GSHS_v01,2023_MAR_GSHS_v01::mar_fez2023,GSHS,Morocco,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,French; English reference; actual administered language not established,2023_MAR_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q33,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::2023_MAR_GSHS_v01,2023_MAR_GSHS_v01::mar_fez2023,GSHS,Morocco,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,French; English reference; actual administered language not established,2023_MAR_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::GHA_2022_GSHS_v01,GHA_2022_GSHS_v01::gha_sek_tak2022,GSHS,Ghana,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English; actual administered language not established,GHA_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q33,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::GHA_2022_GSHS_v01,GHA_2022_GSHS_v01::gha_sek_tak2022,GSHS,Ghana,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English; actual administered language not established,GHA_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q34,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::GHA_2022_GSHS_v01,GHA_2022_GSHS_v01::gha_sek_tak2022,GSHS,Ghana,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English; actual administered language not established,GHA_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::IND_2022_GSHS_v01,IND_2022_GSHS_v01::ind_jaipur_2022,GSHS,India,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English; actual administered language not established,IND_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q34,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::IND_2022_GSHS_v01,IND_2022_GSHS_v01::ind_jaipur_2022,GSHS,India,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English; actual administered language not established,IND_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q35,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::IND_2022_GSHS_v01,IND_2022_GSHS_v01::ind_jaipur_2022,GSHS,India,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English; actual administered language not established,IND_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::JAM_2023_GSHS_v01,JAM_2023_GSHS_v01::jam_st_cath_2023,GSHS,Jamaica,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English; actual administered language not established,JAM_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q28,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::JAM_2023_GSHS_v01,JAM_2023_GSHS_v01::jam_st_cath_2023,GSHS,Jamaica,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English; actual administered language not established,JAM_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q29,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::JAM_2023_GSHS_v01,JAM_2023_GSHS_v01::jam_st_cath_2023,GSHS,Jamaica,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English; actual administered language not established,JAM_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::MNG_2023_GSHS_v01,MNG_2023_GSHS_v01::mng2023,GSHS,Mongolia,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English; Mongolian; actual administered language not established,MNG_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q36,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::MNG_2023_GSHS_v01,MNG_2023_GSHS_v01::mng2023,GSHS,Mongolia,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English; Mongolian; actual administered language not established,MNG_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q37,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::MNG_2023_GSHS_v01,MNG_2023_GSHS_v01::mng2023,GSHS,Mongolia,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English; Mongolian; actual administered language not established,MNG_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::SLB_2023_GSHS_v01,SLB_2023_GSHS_v01::slb_2023,GSHS,Solomon Islands,2023,component,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English catalog literal-question metadata; actual administered language not established,SLB_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::SLB_2023_GSHS_v01,SLB_2023_GSHS_v01::slb_2023,GSHS,Solomon Islands,2023,component,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English catalog literal-question metadata; actual administered language not established,SLB_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::SLB_2023_GSHS_v01,SLB_2023_GSHS_v01::slb_2023,GSHS,Solomon Islands,2023,component,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English catalog literal-question metadata; actual administered language not established,SLB_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::WLF_2023_GSHS_v01,WLF_2023_GSHS_v01::wlf_2023,GSHS,Wallis and Futuna,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,French; English reference; actual administered language not established,WLF_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q29,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::WLF_2023_GSHS_v01,WLF_2023_GSHS_v01::wlf_2023,GSHS,Wallis and Futuna,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,French; English reference; actual administered language not established,WLF_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q30,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::WLF_2023_GSHS_v01,WLF_2023_GSHS_v01::wlf_2023,GSHS,Wallis and Futuna,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,French; English reference; actual administered language not established,WLF_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
YRBS::1991::Q19,YRBS::suicide_ideation::past_12_months,YRBS::1991,YRBS_NATIONAL::1991,YRBS,United States,1991,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q19,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1991,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1991::Q20,YRBS::suicide_plan::past_12_months,YRBS::1991,YRBS_NATIONAL::1991,YRBS,United States,1991,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q20,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1991,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1991::Q21,YRBS::suicide_attempt::past_12_months,YRBS::1991,YRBS_NATIONAL::1991,YRBS,United States,1991,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q21,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1991,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1993::Q24,YRBS::suicide_ideation::past_12_months,YRBS::1993,YRBS_NATIONAL::1993,YRBS,United States,1993,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1993,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1993::Q25,YRBS::suicide_plan::past_12_months,YRBS::1993,YRBS_NATIONAL::1993,YRBS,United States,1993,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1993,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1993::Q26,YRBS::suicide_attempt::past_12_months,YRBS::1993,YRBS_NATIONAL::1993,YRBS,United States,1993,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1993,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1995::Q22,YRBS::suicide_ideation::past_12_months,YRBS::1995,YRBS_NATIONAL::1995,YRBS,United States,1995,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q22,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1995,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1995::Q23,YRBS::suicide_plan::past_12_months,YRBS::1995,YRBS_NATIONAL::1995,YRBS,United States,1995,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q23,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1995,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1995::Q24,YRBS::suicide_attempt::past_12_months,YRBS::1995,YRBS_NATIONAL::1995,YRBS,United States,1995,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1995,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1997::Q22,YRBS::suicide_ideation::past_12_months,YRBS::1997,YRBS_NATIONAL::1997,YRBS,United States,1997,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q22,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1997,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1997::Q23,YRBS::suicide_plan::past_12_months,YRBS::1997,YRBS_NATIONAL::1997,YRBS,United States,1997,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q23,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1997,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1997::Q24,YRBS::suicide_attempt::past_12_months,YRBS::1997,YRBS_NATIONAL::1997,YRBS,United States,1997,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1997,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1999::Q23,YRBS::suicide_ideation::past_12_months,YRBS::1999,YRBS_NATIONAL::1999,YRBS,United States,1999,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q23,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1999,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1999::Q24,YRBS::suicide_plan::past_12_months,YRBS::1999,YRBS_NATIONAL::1999,YRBS,United States,1999,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1999,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1999::Q25,YRBS::suicide_attempt::past_12_months,YRBS::1999,YRBS_NATIONAL::1999,YRBS,United States,1999,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1999,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2001::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2001,YRBS_NATIONAL::2001,YRBS,United States,2001,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2001,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2001::Q25,YRBS::suicide_plan::past_12_months,YRBS::2001,YRBS_NATIONAL::2001,YRBS,United States,2001,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2001,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2001::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2001,YRBS_NATIONAL::2001,YRBS,United States,2001,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2001,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2003::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2003,YRBS_NATIONAL::2003,YRBS,United States,2003,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2003,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2003::Q25,YRBS::suicide_plan::past_12_months,YRBS::2003,YRBS_NATIONAL::2003,YRBS,United States,2003,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2003,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2003::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2003,YRBS_NATIONAL::2003,YRBS,United States,2003,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2003,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2005::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2005,YRBS_NATIONAL::2005,YRBS,United States,2005,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2005,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2005::Q25,YRBS::suicide_plan::past_12_months,YRBS::2005,YRBS_NATIONAL::2005,YRBS,United States,2005,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2005,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2005::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2005,YRBS_NATIONAL::2005,YRBS,United States,2005,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2005,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2007::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2007,YRBS_NATIONAL::2007,YRBS,United States,2007,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2007,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2007::Q25,YRBS::suicide_plan::past_12_months,YRBS::2007,YRBS_NATIONAL::2007,YRBS,United States,2007,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2007,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2007::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2007,YRBS_NATIONAL::2007,YRBS,United States,2007,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2007,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2009::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2009,YRBS_NATIONAL::2009,YRBS,United States,2009,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2009,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2009::Q25,YRBS::suicide_plan::past_12_months,YRBS::2009,YRBS_NATIONAL::2009,YRBS,United States,2009,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2009,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2009::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2009,YRBS_NATIONAL::2009,YRBS,United States,2009,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2009,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2011::Q25,YRBS::suicide_ideation::past_12_months,YRBS::2011,YRBS_NATIONAL::2011,YRBS,United States,2011,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2011,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2011::Q26,YRBS::suicide_plan::past_12_months,YRBS::2011,YRBS_NATIONAL::2011,YRBS,United States,2011,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2011,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2011::Q27,YRBS::suicide_attempt::past_12_months,YRBS::2011,YRBS_NATIONAL::2011,YRBS,United States,2011,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2011,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2013::Q27,YRBS::suicide_ideation::past_12_months,YRBS::2013,YRBS_NATIONAL::2013,YRBS,United States,2013,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2013,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2013::Q28,YRBS::suicide_plan::past_12_months,YRBS::2013,YRBS_NATIONAL::2013,YRBS,United States,2013,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2013,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2013::Q29,YRBS::suicide_attempt::past_12_months,YRBS::2013,YRBS_NATIONAL::2013,YRBS,United States,2013,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q29,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2013,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2015::Q27,YRBS::suicide_ideation::past_12_months,YRBS::2015,YRBS_NATIONAL::2015,YRBS,United States,2015,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2015,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2015::Q28,YRBS::suicide_plan::past_12_months,YRBS::2015,YRBS_NATIONAL::2015,YRBS,United States,2015,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2015,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2015::Q29,YRBS::suicide_attempt::past_12_months,YRBS::2015,YRBS_NATIONAL::2015,YRBS,United States,2015,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q29,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2015,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2017::Q26,YRBS::suicide_ideation::past_12_months,YRBS::2017,YRBS_NATIONAL::2017,YRBS,United States,2017,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2017,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2017::Q27,YRBS::suicide_plan::past_12_months,YRBS::2017,YRBS_NATIONAL::2017,YRBS,United States,2017,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2017,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2017::Q28,YRBS::suicide_attempt::past_12_months,YRBS::2017,YRBS_NATIONAL::2017,YRBS,United States,2017,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2017,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2019::Q26,YRBS::suicide_ideation::past_12_months,YRBS::2019,YRBS_NATIONAL::2019,YRBS,United States,2019,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2019,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2019::Q27,YRBS::suicide_plan::past_12_months,YRBS::2019,YRBS_NATIONAL::2019,YRBS,United States,2019,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2019,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2019::Q28,YRBS::suicide_attempt::past_12_months,YRBS::2019,YRBS_NATIONAL::2019,YRBS,United States,2019,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2019,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2021::Q26,YRBS::suicide_ideation::past_12_months,YRBS::2021,YRBS_NATIONAL::2021,YRBS,United States,2021,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2021,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2021::Q27,YRBS::suicide_plan::past_12_months,YRBS::2021,YRBS_NATIONAL::2021,YRBS,United States,2021,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2021,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2021::Q28,YRBS::suicide_attempt::past_12_months,YRBS::2021,YRBS_NATIONAL::2021,YRBS,United States,2021,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2021,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2023::Q27,YRBS::suicide_ideation::past_12_months,YRBS::2023,YRBS_NATIONAL::2023,YRBS,United States,2023,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you ever seriously consider attempting suicide?",suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2023,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2023::Q28,YRBS::suicide_plan::past_12_months,YRBS::2023,YRBS_NATIONAL::2023,YRBS,United States,2023,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, did you make a plan about how you would attempt suicide?",suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2023,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2023::Q29,YRBS::suicide_attempt::past_12_months,YRBS::2023,YRBS_NATIONAL::2023,YRBS,United States,2023,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q29,"During the past 12 months, how many times did you actually attempt suicide?",suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2023,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
NSDUH::2021::YUSUITHK,NSDUH::suicide_ideation::past_12_months,NSDUH::2021,NSDUH_YOUTH::2021,NSDUH,United States,2021,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUITHK,"The next few questions are about thoughts of suicide. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself ?",suicide_ideation,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2021 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2021::YUSUIPLN,NSDUH::suicide_plan::past_12_months,NSDUH::2021,NSDUH_YOUTH::2021,NSDUH,United States,2021,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUIPLN,"During the past 12 months, did you make any plans to kill yourself?",suicide_plan,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2021 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2022::YUSUITHK,NSDUH::suicide_ideation::past_12_months,NSDUH::2022,NSDUH_YOUTH::2022,NSDUH,United States,2022,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUITHK,"Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",suicide_ideation,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2022 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2022::YUSUIPLN,NSDUH::suicide_plan::past_12_months,NSDUH::2022,NSDUH_YOUTH::2022,NSDUH,United States,2022,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUIPLN,"During the past 12 months, did you make any plans to kill yourself?",suicide_plan,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2022 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2023::YUSUITHK,NSDUH::suicide_ideation::past_12_months,NSDUH::2023,NSDUH_YOUTH::2023,NSDUH,United States,2023,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUITHK,"Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",suicide_ideation,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2023 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2023::YUSUIPLN,NSDUH::suicide_plan::past_12_months,NSDUH::2023,NSDUH_YOUTH::2023,NSDUH,United States,2023,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUIPLN,"During the past 12 months, did you make any plans to kill yourself?",suicide_plan,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2023 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2024::YUSUITHK,NSDUH::suicide_ideation::past_12_months,NSDUH::2024,NSDUH_YOUTH::2024,NSDUH,United States,2024,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUITHK,"Note: Beginning in 2022, questions YSUI01, YSUI02, YSUI03, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",suicide_ideation,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2024 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2024::YUSUIPLN,NSDUH::suicide_plan::past_12_months,NSDUH::2024,NSDUH_YOUTH::2024,NSDUH,United States,2024,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUIPLN,"During the past 12 months, did you make any plans to kill yourself?",suicide_plan,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2024 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2021::YUSUICTRY,NSDUH::suicide_attempt::past_12_months,NSDUH::2021,NSDUH_YOUTH::2021,NSDUH,United States,2021,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUICTRY,"During the past 12 months, did you try to kill yourself?",suicide_attempt,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2021 youth module,administered_but_not_available_in_local_public_use_package,not_analyzable_without_authorized_source,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,,,provisional,"Asked of all adolescents aged 1217, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source."
NSDUH::2022::YUSUICTRY,NSDUH::suicide_attempt::past_12_months,NSDUH::2022,NSDUH_YOUTH::2022,NSDUH,United States,2022,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUICTRY,"During the past 12 months, did you try to kill yourself?",suicide_attempt,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2022 youth module,administered_but_not_available_in_local_public_use_package,not_analyzable_without_authorized_source,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,,,provisional,"Asked of all adolescents aged 1217, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source."
NSDUH::2023::YUSUICTRY,NSDUH::suicide_attempt::past_12_months,NSDUH::2023,NSDUH_YOUTH::2023,NSDUH,United States,2023,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUICTRY,"During the past 12 months, did you try to kill yourself?",suicide_attempt,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2023 youth module,administered_but_not_available_in_local_public_use_package,not_analyzable_without_authorized_source,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,,,provisional,"Asked of all adolescents aged 1217, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source."
NSDUH::2024::YUSUICTRY,NSDUH::suicide_attempt::past_12_months,NSDUH::2024,NSDUH_YOUTH::2024,NSDUH,United States,2024,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUICTRY,"During the past 12 months, did you try to kill yourself?",suicide_attempt,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2024 youth module,administered_but_not_available_in_local_public_use_package,not_analyzable_without_authorized_source,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,,,provisional,"Asked of all adolescents aged 1217, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source."
item_version_id,item_family_id,survey_id,component_id,survey,country,year,scope,population,source_variable,question_text,text_hash,construct,time_window,response_type,language,questionnaire_version,data_availability,analysis_eligibility,source_file,source_url,page_or_section,reviewer_1,reviewer_2,review_status,notes
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::2023_MAR_GSHS_v01,2023_MAR_GSHS_v01::mar_fez2023,GSHS,Morocco,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46,suicide_ideation,past 12 months,binary,French; English reference; actual administered language not established,2023_MAR_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q32,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::2023_MAR_GSHS_v01,2023_MAR_GSHS_v01::mar_fez2023,GSHS,Morocco,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,French; English reference; actual administered language not established,2023_MAR_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q33,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::2023_MAR_GSHS_v01,2023_MAR_GSHS_v01::mar_fez2023,GSHS,Morocco,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07,suicide_attempt,past 12 months,ordinal_frequency,French; English reference; actual administered language not established,2023_MAR_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::GHA_2022_GSHS_v01,GHA_2022_GSHS_v01::gha_sek_tak2022,GSHS,Ghana,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46,suicide_ideation,past 12 months,binary,English; actual administered language not established,GHA_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q33,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::GHA_2022_GSHS_v01,GHA_2022_GSHS_v01::gha_sek_tak2022,GSHS,Ghana,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English; actual administered language not established,GHA_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q34,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::GHA_2022_GSHS_v01,GHA_2022_GSHS_v01::gha_sek_tak2022,GSHS,Ghana,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07,suicide_attempt,past 12 months,ordinal_frequency,English; actual administered language not established,GHA_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::IND_2022_GSHS_v01,IND_2022_GSHS_v01::ind_jaipur_2022,GSHS,India,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46,suicide_ideation,past 12 months,binary,English; actual administered language not established,IND_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q34,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::IND_2022_GSHS_v01,IND_2022_GSHS_v01::ind_jaipur_2022,GSHS,India,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English; actual administered language not established,IND_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q35,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::IND_2022_GSHS_v01,IND_2022_GSHS_v01::ind_jaipur_2022,GSHS,India,2022,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07,suicide_attempt,past 12 months,ordinal_frequency,English; actual administered language not established,IND_2022_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::JAM_2023_GSHS_v01,JAM_2023_GSHS_v01::jam_st_cath_2023,GSHS,Jamaica,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46,suicide_ideation,past 12 months,binary,English; actual administered language not established,JAM_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q28,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::JAM_2023_GSHS_v01,JAM_2023_GSHS_v01::jam_st_cath_2023,GSHS,Jamaica,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English; actual administered language not established,JAM_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q29,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::JAM_2023_GSHS_v01,JAM_2023_GSHS_v01::jam_st_cath_2023,GSHS,Jamaica,2023,component,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07,suicide_attempt,past 12 months,ordinal_frequency,English; actual administered language not established,JAM_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::MNG_2023_GSHS_v01,MNG_2023_GSHS_v01::mng2023,GSHS,Mongolia,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46,suicide_ideation,past 12 months,binary,English; Mongolian; actual administered language not established,MNG_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q36,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::MNG_2023_GSHS_v01,MNG_2023_GSHS_v01::mng2023,GSHS,Mongolia,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English; Mongolian; actual administered language not established,MNG_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q37,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::MNG_2023_GSHS_v01,MNG_2023_GSHS_v01::mng2023,GSHS,Mongolia,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07,suicide_attempt,past 12 months,ordinal_frequency,English; Mongolian; actual administered language not established,MNG_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::SLB_2023_GSHS_v01,SLB_2023_GSHS_v01::slb_2023,GSHS,Solomon Islands,2023,component,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46,suicide_ideation,past 12 months,binary,English catalog literal-question metadata; actual administered language not established,SLB_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::SLB_2023_GSHS_v01,SLB_2023_GSHS_v01::slb_2023,GSHS,Solomon Islands,2023,component,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English catalog literal-question metadata; actual administered language not established,SLB_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::SLB_2023_GSHS_v01,SLB_2023_GSHS_v01::slb_2023,GSHS,Solomon Islands,2023,component,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07,suicide_attempt,past 12 months,ordinal_frequency,English catalog literal-question metadata; actual administered language not established,SLB_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,GSHS::suicide_ideation::past_12_months,GSHS::WLF_2023_GSHS_v01,WLF_2023_GSHS_v01::wlf_2023,GSHS,Wallis and Futuna,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_considersui,"During the past 12 months, did you seriously consider attempting suicide?",32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46,suicide_ideation,past 12 months,binary,French; English reference; actual administered language not established,WLF_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q29,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,GSHS::suicide_plan::past_12_months,GSHS::WLF_2023_GSHS_v01,WLF_2023_GSHS_v01::wlf_2023,GSHS,Wallis and Futuna,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_plansui,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,French; English reference; actual administered language not established,WLF_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q30,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,GSHS::suicide_attempt::past_12_months,GSHS::WLF_2023_GSHS_v01,WLF_2023_GSHS_v01::wlf_2023,GSHS,Wallis and Futuna,2023,national,school-attending students; exact sampled ages/grades remain pending component source review,raw_mh_attemptsui,"During the past 12 months, how many times did you attempt suicide?",490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07,suicide_attempt,past 12 months,ordinal_frequency,French; English reference; actual administered language not established,WLF_2023_GSHS_v01,available_in_local_component,provisional_pipeline_development_only,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,,,provisional,"Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item."
YRBS::1991::Q19,YRBS::suicide_ideation::past_12_months,YRBS::1991,YRBS_NATIONAL::1991,YRBS,United States,1991,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q19,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1991,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1991::Q20,YRBS::suicide_plan::past_12_months,YRBS::1991,YRBS_NATIONAL::1991,YRBS,United States,1991,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q20,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1991,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1991::Q21,YRBS::suicide_attempt::past_12_months,YRBS::1991,YRBS_NATIONAL::1991,YRBS,United States,1991,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q21,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1991,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1993::Q24,YRBS::suicide_ideation::past_12_months,YRBS::1993,YRBS_NATIONAL::1993,YRBS,United States,1993,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1993,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1993::Q25,YRBS::suicide_plan::past_12_months,YRBS::1993,YRBS_NATIONAL::1993,YRBS,United States,1993,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1993,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1993::Q26,YRBS::suicide_attempt::past_12_months,YRBS::1993,YRBS_NATIONAL::1993,YRBS,United States,1993,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1993,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1995::Q22,YRBS::suicide_ideation::past_12_months,YRBS::1995,YRBS_NATIONAL::1995,YRBS,United States,1995,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q22,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1995,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1995::Q23,YRBS::suicide_plan::past_12_months,YRBS::1995,YRBS_NATIONAL::1995,YRBS,United States,1995,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q23,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1995,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1995::Q24,YRBS::suicide_attempt::past_12_months,YRBS::1995,YRBS_NATIONAL::1995,YRBS,United States,1995,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1995,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1997::Q22,YRBS::suicide_ideation::past_12_months,YRBS::1997,YRBS_NATIONAL::1997,YRBS,United States,1997,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q22,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1997,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1997::Q23,YRBS::suicide_plan::past_12_months,YRBS::1997,YRBS_NATIONAL::1997,YRBS,United States,1997,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q23,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1997,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1997::Q24,YRBS::suicide_attempt::past_12_months,YRBS::1997,YRBS_NATIONAL::1997,YRBS,United States,1997,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1997,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1999::Q23,YRBS::suicide_ideation::past_12_months,YRBS::1999,YRBS_NATIONAL::1999,YRBS,United States,1999,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q23,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1999,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1999::Q24,YRBS::suicide_plan::past_12_months,YRBS::1999,YRBS_NATIONAL::1999,YRBS,United States,1999,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1999,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::1999::Q25,YRBS::suicide_attempt::past_12_months,YRBS::1999,YRBS_NATIONAL::1999,YRBS,United States,1999,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 1999,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2001::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2001,YRBS_NATIONAL::2001,YRBS,United States,2001,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2001,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2001::Q25,YRBS::suicide_plan::past_12_months,YRBS::2001,YRBS_NATIONAL::2001,YRBS,United States,2001,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2001,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2001::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2001,YRBS_NATIONAL::2001,YRBS,United States,2001,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2001,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2003::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2003,YRBS_NATIONAL::2003,YRBS,United States,2003,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2003,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2003::Q25,YRBS::suicide_plan::past_12_months,YRBS::2003,YRBS_NATIONAL::2003,YRBS,United States,2003,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2003,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2003::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2003,YRBS_NATIONAL::2003,YRBS,United States,2003,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2003,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2005::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2005,YRBS_NATIONAL::2005,YRBS,United States,2005,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2005,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2005::Q25,YRBS::suicide_plan::past_12_months,YRBS::2005,YRBS_NATIONAL::2005,YRBS,United States,2005,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2005,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2005::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2005,YRBS_NATIONAL::2005,YRBS,United States,2005,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2005,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2007::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2007,YRBS_NATIONAL::2007,YRBS,United States,2007,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2007,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2007::Q25,YRBS::suicide_plan::past_12_months,YRBS::2007,YRBS_NATIONAL::2007,YRBS,United States,2007,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2007,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2007::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2007,YRBS_NATIONAL::2007,YRBS,United States,2007,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2007,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2009::Q24,YRBS::suicide_ideation::past_12_months,YRBS::2009,YRBS_NATIONAL::2009,YRBS,United States,2009,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q24,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2009,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2009::Q25,YRBS::suicide_plan::past_12_months,YRBS::2009,YRBS_NATIONAL::2009,YRBS,United States,2009,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2009,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2009::Q26,YRBS::suicide_attempt::past_12_months,YRBS::2009,YRBS_NATIONAL::2009,YRBS,United States,2009,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2009,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2011::Q25,YRBS::suicide_ideation::past_12_months,YRBS::2011,YRBS_NATIONAL::2011,YRBS,United States,2011,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q25,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2011,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2011::Q26,YRBS::suicide_plan::past_12_months,YRBS::2011,YRBS_NATIONAL::2011,YRBS,United States,2011,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2011,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2011::Q27,YRBS::suicide_attempt::past_12_months,YRBS::2011,YRBS_NATIONAL::2011,YRBS,United States,2011,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2011,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2013::Q27,YRBS::suicide_ideation::past_12_months,YRBS::2013,YRBS_NATIONAL::2013,YRBS,United States,2013,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2013,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2013::Q28,YRBS::suicide_plan::past_12_months,YRBS::2013,YRBS_NATIONAL::2013,YRBS,United States,2013,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2013,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2013::Q29,YRBS::suicide_attempt::past_12_months,YRBS::2013,YRBS_NATIONAL::2013,YRBS,United States,2013,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q29,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2013,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2015::Q27,YRBS::suicide_ideation::past_12_months,YRBS::2015,YRBS_NATIONAL::2015,YRBS,United States,2015,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2015,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2015::Q28,YRBS::suicide_plan::past_12_months,YRBS::2015,YRBS_NATIONAL::2015,YRBS,United States,2015,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2015,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2015::Q29,YRBS::suicide_attempt::past_12_months,YRBS::2015,YRBS_NATIONAL::2015,YRBS,United States,2015,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q29,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2015,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2017::Q26,YRBS::suicide_ideation::past_12_months,YRBS::2017,YRBS_NATIONAL::2017,YRBS,United States,2017,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2017,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2017::Q27,YRBS::suicide_plan::past_12_months,YRBS::2017,YRBS_NATIONAL::2017,YRBS,United States,2017,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2017,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2017::Q28,YRBS::suicide_attempt::past_12_months,YRBS::2017,YRBS_NATIONAL::2017,YRBS,United States,2017,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2017,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2019::Q26,YRBS::suicide_ideation::past_12_months,YRBS::2019,YRBS_NATIONAL::2019,YRBS,United States,2019,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2019,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2019::Q27,YRBS::suicide_plan::past_12_months,YRBS::2019,YRBS_NATIONAL::2019,YRBS,United States,2019,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2019,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2019::Q28,YRBS::suicide_attempt::past_12_months,YRBS::2019,YRBS_NATIONAL::2019,YRBS,United States,2019,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2019,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2021::Q26,YRBS::suicide_ideation::past_12_months,YRBS::2021,YRBS_NATIONAL::2021,YRBS,United States,2021,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q26,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2021,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2021::Q27,YRBS::suicide_plan::past_12_months,YRBS::2021,YRBS_NATIONAL::2021,YRBS,United States,2021,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2021,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2021::Q28,YRBS::suicide_attempt::past_12_months,YRBS::2021,YRBS_NATIONAL::2021,YRBS,United States,2021,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2021,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2023::Q27,YRBS::suicide_ideation::past_12_months,YRBS::2023,YRBS_NATIONAL::2023,YRBS,United States,2023,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q27,"During the past 12 months, did you ever seriously consider attempting suicide?",0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973,suicide_ideation,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2023,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2023::Q28,YRBS::suicide_plan::past_12_months,YRBS::2023,YRBS_NATIONAL::2023,YRBS,United States,2023,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q28,"During the past 12 months, did you make a plan about how you would attempt suicide?",f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505,suicide_plan,past 12 months,binary,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2023,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
YRBS::2023::Q29,YRBS::suicide_attempt::past_12_months,YRBS::2023,YRBS_NATIONAL::2023,YRBS,United States,2023,national,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,Q29,"During the past 12 months, how many times did you actually attempt suicide?",99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03,suicide_attempt,past 12 months,ordinal_frequency,English questionnaire source; actual accommodation/language coverage not established by this audit,YRBS national questionnaire 2023,available_full_table,provisional_pipeline_development_only,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,provisional,blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
NSDUH::2021::YUSUITHK,NSDUH::suicide_ideation::past_12_months,NSDUH::2021,NSDUH_YOUTH::2021,NSDUH,United States,2021,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUITHK,"The next few questions are about thoughts of suicide. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself ?",655dea94026d96937a368ed77fad63361078c7fecfcc1cd0bee8ae3b62cb8267,suicide_ideation,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2021 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2021::YUSUIPLN,NSDUH::suicide_plan::past_12_months,NSDUH::2021,NSDUH_YOUTH::2021,NSDUH,United States,2021,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUIPLN,"During the past 12 months, did you make any plans to kill yourself?",66e41d31c31186b2c4804776d2c0d867ec70fb71113001338680724e9aef05d1,suicide_plan,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2021 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2022::YUSUITHK,NSDUH::suicide_ideation::past_12_months,NSDUH::2022,NSDUH_YOUTH::2022,NSDUH,United States,2022,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUITHK,"Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",2e47c89fadeeb1ba172a1c3f701e18bbd0f9918dfd3042bb133777e39c9d6bf5,suicide_ideation,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2022 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2022::YUSUIPLN,NSDUH::suicide_plan::past_12_months,NSDUH::2022,NSDUH_YOUTH::2022,NSDUH,United States,2022,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUIPLN,"During the past 12 months, did you make any plans to kill yourself?",66e41d31c31186b2c4804776d2c0d867ec70fb71113001338680724e9aef05d1,suicide_plan,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2022 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2023::YUSUITHK,NSDUH::suicide_ideation::past_12_months,NSDUH::2023,NSDUH_YOUTH::2023,NSDUH,United States,2023,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUITHK,"Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",2e47c89fadeeb1ba172a1c3f701e18bbd0f9918dfd3042bb133777e39c9d6bf5,suicide_ideation,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2023 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2023::YUSUIPLN,NSDUH::suicide_plan::past_12_months,NSDUH::2023,NSDUH_YOUTH::2023,NSDUH,United States,2023,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUIPLN,"During the past 12 months, did you make any plans to kill yourself?",66e41d31c31186b2c4804776d2c0d867ec70fb71113001338680724e9aef05d1,suicide_plan,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2023 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2024::YUSUITHK,NSDUH::suicide_ideation::past_12_months,NSDUH::2024,NSDUH_YOUTH::2024,NSDUH,United States,2024,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUITHK,"Note: Beginning in 2022, questions YSUI01, YSUI02, YSUI03, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",7a688bc54040f6ff682b5b8194237060f829dc16cf91cf448865a76d7d7c3100,suicide_ideation,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2024 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2024::YUSUIPLN,NSDUH::suicide_plan::past_12_months,NSDUH::2024,NSDUH_YOUTH::2024,NSDUH,United States,2024,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUIPLN,"During the past 12 months, did you make any plans to kill yourself?",66e41d31c31186b2c4804776d2c0d867ec70fb71113001338680724e9aef05d1,suicide_plan,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2024 youth module,available_in_local_public_use_table,provisional_pipeline_development_only,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,,,provisional,Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
NSDUH::2021::YUSUICTRY,NSDUH::suicide_attempt::past_12_months,NSDUH::2021,NSDUH_YOUTH::2021,NSDUH,United States,2021,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUICTRY,"During the past 12 months, did you try to kill yourself?",f870f158cf7b2a15b314ea5a07674ea5e3ca14a2155652cddb7f2f50806666e8,suicide_attempt,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2021 youth module,administered_but_not_available_in_local_public_use_package,not_analyzable_without_authorized_source,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,,,provisional,"Asked of all adolescents aged 1217, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source."
NSDUH::2022::YUSUICTRY,NSDUH::suicide_attempt::past_12_months,NSDUH::2022,NSDUH_YOUTH::2022,NSDUH,United States,2022,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUICTRY,"During the past 12 months, did you try to kill yourself?",f870f158cf7b2a15b314ea5a07674ea5e3ca14a2155652cddb7f2f50806666e8,suicide_attempt,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2022 youth module,administered_but_not_available_in_local_public_use_package,not_analyzable_without_authorized_source,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,,,provisional,"Asked of all adolescents aged 1217, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source."
NSDUH::2023::YUSUICTRY,NSDUH::suicide_attempt::past_12_months,NSDUH::2023,NSDUH_YOUTH::2023,NSDUH,United States,2023,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUICTRY,"During the past 12 months, did you try to kill yourself?",f870f158cf7b2a15b314ea5a07674ea5e3ca14a2155652cddb7f2f50806666e8,suicide_attempt,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2023 youth module,administered_but_not_available_in_local_public_use_package,not_analyzable_without_authorized_source,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,,,provisional,"Asked of all adolescents aged 1217, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source."
NSDUH::2024::YUSUICTRY,NSDUH::suicide_attempt::past_12_months,NSDUH::2024,NSDUH_YOUTH::2024,NSDUH,United States,2024,national household survey youth module,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,YUSUICTRY,"During the past 12 months, did you try to kill yourself?",f870f158cf7b2a15b314ea5a07674ea5e3ca14a2155652cddb7f2f50806666e8,suicide_attempt,past 12 months,categorical_binary_with_explicit_uncertainty,English source metadata; administered-language/accommodation coverage not established,NSDUH 2024 youth module,administered_but_not_available_in_local_public_use_package,not_analyzable_without_authorized_source,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,,,provisional,"Asked of all adolescents aged 1217, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source."
1 item_version_id item_family_id survey_id component_id survey country year scope population source_variable question_text text_hash construct time_window response_type language questionnaire_version data_availability analysis_eligibility source_file source_url page_or_section reviewer_1 reviewer_2 review_status notes
2 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui GSHS::suicide_ideation::past_12_months GSHS::2023_MAR_GSHS_v01 2023_MAR_GSHS_v01::mar_fez2023 GSHS Morocco 2023 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_considersui During the past 12 months, did you seriously consider attempting suicide? 32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46 suicide_ideation past 12 months binary French; English reference; actual administered language not established 2023_MAR_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q32 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
3 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui GSHS::suicide_plan::past_12_months GSHS::2023_MAR_GSHS_v01 2023_MAR_GSHS_v01::mar_fez2023 GSHS Morocco 2023 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_plansui During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary French; English reference; actual administered language not established 2023_MAR_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q33 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
4 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui GSHS::suicide_attempt::past_12_months GSHS::2023_MAR_GSHS_v01 2023_MAR_GSHS_v01::mar_fez2023 GSHS Morocco 2023 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_attemptsui During the past 12 months, how many times did you attempt suicide? 490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07 suicide_attempt past 12 months ordinal_frequency French; English reference; actual administered language not established 2023_MAR_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
5 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui GSHS::suicide_ideation::past_12_months GSHS::GHA_2022_GSHS_v01 GHA_2022_GSHS_v01::gha_sek_tak2022 GSHS Ghana 2022 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_considersui During the past 12 months, did you seriously consider attempting suicide? 32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46 suicide_ideation past 12 months binary English; actual administered language not established GHA_2022_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q33 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
6 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui GSHS::suicide_plan::past_12_months GSHS::GHA_2022_GSHS_v01 GHA_2022_GSHS_v01::gha_sek_tak2022 GSHS Ghana 2022 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_plansui During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English; actual administered language not established GHA_2022_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q34 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
7 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui GSHS::suicide_attempt::past_12_months GSHS::GHA_2022_GSHS_v01 GHA_2022_GSHS_v01::gha_sek_tak2022 GSHS Ghana 2022 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_attemptsui During the past 12 months, how many times did you attempt suicide? 490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07 suicide_attempt past 12 months ordinal_frequency English; actual administered language not established GHA_2022_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
8 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui GSHS::suicide_ideation::past_12_months GSHS::IND_2022_GSHS_v01 IND_2022_GSHS_v01::ind_jaipur_2022 GSHS India 2022 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_considersui During the past 12 months, did you seriously consider attempting suicide? 32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46 suicide_ideation past 12 months binary English; actual administered language not established IND_2022_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q34 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
9 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui GSHS::suicide_plan::past_12_months GSHS::IND_2022_GSHS_v01 IND_2022_GSHS_v01::ind_jaipur_2022 GSHS India 2022 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_plansui During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English; actual administered language not established IND_2022_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q35 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
10 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui GSHS::suicide_attempt::past_12_months GSHS::IND_2022_GSHS_v01 IND_2022_GSHS_v01::ind_jaipur_2022 GSHS India 2022 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_attemptsui During the past 12 months, how many times did you attempt suicide? 490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07 suicide_attempt past 12 months ordinal_frequency English; actual administered language not established IND_2022_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
11 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui GSHS::suicide_ideation::past_12_months GSHS::JAM_2023_GSHS_v01 JAM_2023_GSHS_v01::jam_st_cath_2023 GSHS Jamaica 2023 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_considersui During the past 12 months, did you seriously consider attempting suicide? 32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46 suicide_ideation past 12 months binary English; actual administered language not established JAM_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q28 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
12 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui GSHS::suicide_plan::past_12_months GSHS::JAM_2023_GSHS_v01 JAM_2023_GSHS_v01::jam_st_cath_2023 GSHS Jamaica 2023 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_plansui During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English; actual administered language not established JAM_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q29 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
13 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui GSHS::suicide_attempt::past_12_months GSHS::JAM_2023_GSHS_v01 JAM_2023_GSHS_v01::jam_st_cath_2023 GSHS Jamaica 2023 component school-attending students; exact sampled ages/grades remain pending component source review raw_mh_attemptsui During the past 12 months, how many times did you attempt suicide? 490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07 suicide_attempt past 12 months ordinal_frequency English; actual administered language not established JAM_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
14 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui GSHS::suicide_ideation::past_12_months GSHS::MNG_2023_GSHS_v01 MNG_2023_GSHS_v01::mng2023 GSHS Mongolia 2023 national school-attending students; exact sampled ages/grades remain pending component source review raw_mh_considersui During the past 12 months, did you seriously consider attempting suicide? 32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46 suicide_ideation past 12 months binary English; Mongolian; actual administered language not established MNG_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q36 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
15 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui GSHS::suicide_plan::past_12_months GSHS::MNG_2023_GSHS_v01 MNG_2023_GSHS_v01::mng2023 GSHS Mongolia 2023 national school-attending students; exact sampled ages/grades remain pending component source review raw_mh_plansui During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English; Mongolian; actual administered language not established MNG_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q37 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
16 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui GSHS::suicide_attempt::past_12_months GSHS::MNG_2023_GSHS_v01 MNG_2023_GSHS_v01::mng2023 GSHS Mongolia 2023 national school-attending students; exact sampled ages/grades remain pending component source review raw_mh_attemptsui During the past 12 months, how many times did you attempt suicide? 490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07 suicide_attempt past 12 months ordinal_frequency English; Mongolian; actual administered language not established MNG_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
17 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui GSHS::suicide_ideation::past_12_months GSHS::SLB_2023_GSHS_v01 SLB_2023_GSHS_v01::slb_2023 GSHS Solomon Islands 2023 component school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible raw_mh_considersui During the past 12 months, did you seriously consider attempting suicide? 32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46 suicide_ideation past 12 months binary English catalog literal-question metadata; actual administered language not established SLB_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
18 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui GSHS::suicide_plan::past_12_months GSHS::SLB_2023_GSHS_v01 SLB_2023_GSHS_v01::slb_2023 GSHS Solomon Islands 2023 component school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible raw_mh_plansui During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English catalog literal-question metadata; actual administered language not established SLB_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
19 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui GSHS::suicide_attempt::past_12_months GSHS::SLB_2023_GSHS_v01 SLB_2023_GSHS_v01::slb_2023 GSHS Solomon Islands 2023 component school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible raw_mh_attemptsui During the past 12 months, how many times did you attempt suicide? 490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07 suicide_attempt past 12 months ordinal_frequency English catalog literal-question metadata; actual administered language not established SLB_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
20 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui GSHS::suicide_ideation::past_12_months GSHS::WLF_2023_GSHS_v01 WLF_2023_GSHS_v01::wlf_2023 GSHS Wallis and Futuna 2023 national school-attending students; exact sampled ages/grades remain pending component source review raw_mh_considersui During the past 12 months, did you seriously consider attempting suicide? 32ff301e6e09c2a1a19632bafd61441229513d9f8b828d6e92e0918e0580df46 suicide_ideation past 12 months binary French; English reference; actual administered language not established WLF_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q29 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
21 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui GSHS::suicide_plan::past_12_months GSHS::WLF_2023_GSHS_v01 WLF_2023_GSHS_v01::wlf_2023 GSHS Wallis and Futuna 2023 national school-attending students; exact sampled ages/grades remain pending component source review raw_mh_plansui During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary French; English reference; actual administered language not established WLF_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q30 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
22 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui GSHS::suicide_attempt::past_12_months GSHS::WLF_2023_GSHS_v01 WLF_2023_GSHS_v01::wlf_2023 GSHS Wallis and Futuna 2023 national school-attending students; exact sampled ages/grades remain pending component source review raw_mh_attemptsui During the past 12 months, how many times did you attempt suicide? 490c698e57394e23acab27853ed35a385a3999b92694015bcd0e940542b30f07 suicide_attempt past 12 months ordinal_frequency French; English reference; actual administered language not established WLF_2023_GSHS_v01 available_in_local_component provisional_pipeline_development_only Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31 provisional Raw administered item only; the raw_mh_b_* field is a derived/duplicate representation, not another administered item.
23 YRBS::1991::Q19 YRBS::suicide_ideation::past_12_months YRBS::1991 YRBS_NATIONAL::1991 YRBS United States 1991 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q19 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1991 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
24 YRBS::1991::Q20 YRBS::suicide_plan::past_12_months YRBS::1991 YRBS_NATIONAL::1991 YRBS United States 1991 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q20 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1991 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
25 YRBS::1991::Q21 YRBS::suicide_attempt::past_12_months YRBS::1991 YRBS_NATIONAL::1991 YRBS United States 1991 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q21 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1991 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
26 YRBS::1993::Q24 YRBS::suicide_ideation::past_12_months YRBS::1993 YRBS_NATIONAL::1993 YRBS United States 1993 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1993 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
27 YRBS::1993::Q25 YRBS::suicide_plan::past_12_months YRBS::1993 YRBS_NATIONAL::1993 YRBS United States 1993 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q25 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1993 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
28 YRBS::1993::Q26 YRBS::suicide_attempt::past_12_months YRBS::1993 YRBS_NATIONAL::1993 YRBS United States 1993 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1993 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
29 YRBS::1995::Q22 YRBS::suicide_ideation::past_12_months YRBS::1995 YRBS_NATIONAL::1995 YRBS United States 1995 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q22 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1995 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
30 YRBS::1995::Q23 YRBS::suicide_plan::past_12_months YRBS::1995 YRBS_NATIONAL::1995 YRBS United States 1995 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q23 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1995 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
31 YRBS::1995::Q24 YRBS::suicide_attempt::past_12_months YRBS::1995 YRBS_NATIONAL::1995 YRBS United States 1995 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1995 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
32 YRBS::1997::Q22 YRBS::suicide_ideation::past_12_months YRBS::1997 YRBS_NATIONAL::1997 YRBS United States 1997 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q22 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1997 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
33 YRBS::1997::Q23 YRBS::suicide_plan::past_12_months YRBS::1997 YRBS_NATIONAL::1997 YRBS United States 1997 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q23 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1997 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
34 YRBS::1997::Q24 YRBS::suicide_attempt::past_12_months YRBS::1997 YRBS_NATIONAL::1997 YRBS United States 1997 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1997 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
35 YRBS::1999::Q23 YRBS::suicide_ideation::past_12_months YRBS::1999 YRBS_NATIONAL::1999 YRBS United States 1999 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q23 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1999 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
36 YRBS::1999::Q24 YRBS::suicide_plan::past_12_months YRBS::1999 YRBS_NATIONAL::1999 YRBS United States 1999 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1999 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
37 YRBS::1999::Q25 YRBS::suicide_attempt::past_12_months YRBS::1999 YRBS_NATIONAL::1999 YRBS United States 1999 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q25 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 1999 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
38 YRBS::2001::Q24 YRBS::suicide_ideation::past_12_months YRBS::2001 YRBS_NATIONAL::2001 YRBS United States 2001 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2001 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
39 YRBS::2001::Q25 YRBS::suicide_plan::past_12_months YRBS::2001 YRBS_NATIONAL::2001 YRBS United States 2001 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q25 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2001 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
40 YRBS::2001::Q26 YRBS::suicide_attempt::past_12_months YRBS::2001 YRBS_NATIONAL::2001 YRBS United States 2001 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2001 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
41 YRBS::2003::Q24 YRBS::suicide_ideation::past_12_months YRBS::2003 YRBS_NATIONAL::2003 YRBS United States 2003 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2003 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
42 YRBS::2003::Q25 YRBS::suicide_plan::past_12_months YRBS::2003 YRBS_NATIONAL::2003 YRBS United States 2003 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q25 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2003 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
43 YRBS::2003::Q26 YRBS::suicide_attempt::past_12_months YRBS::2003 YRBS_NATIONAL::2003 YRBS United States 2003 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2003 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
44 YRBS::2005::Q24 YRBS::suicide_ideation::past_12_months YRBS::2005 YRBS_NATIONAL::2005 YRBS United States 2005 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2005 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
45 YRBS::2005::Q25 YRBS::suicide_plan::past_12_months YRBS::2005 YRBS_NATIONAL::2005 YRBS United States 2005 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q25 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2005 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
46 YRBS::2005::Q26 YRBS::suicide_attempt::past_12_months YRBS::2005 YRBS_NATIONAL::2005 YRBS United States 2005 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2005 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
47 YRBS::2007::Q24 YRBS::suicide_ideation::past_12_months YRBS::2007 YRBS_NATIONAL::2007 YRBS United States 2007 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2007 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
48 YRBS::2007::Q25 YRBS::suicide_plan::past_12_months YRBS::2007 YRBS_NATIONAL::2007 YRBS United States 2007 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q25 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2007 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
49 YRBS::2007::Q26 YRBS::suicide_attempt::past_12_months YRBS::2007 YRBS_NATIONAL::2007 YRBS United States 2007 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2007 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
50 YRBS::2009::Q24 YRBS::suicide_ideation::past_12_months YRBS::2009 YRBS_NATIONAL::2009 YRBS United States 2009 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q24 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2009 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
51 YRBS::2009::Q25 YRBS::suicide_plan::past_12_months YRBS::2009 YRBS_NATIONAL::2009 YRBS United States 2009 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q25 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2009 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
52 YRBS::2009::Q26 YRBS::suicide_attempt::past_12_months YRBS::2009 YRBS_NATIONAL::2009 YRBS United States 2009 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2009 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
53 YRBS::2011::Q25 YRBS::suicide_ideation::past_12_months YRBS::2011 YRBS_NATIONAL::2011 YRBS United States 2011 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q25 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2011 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
54 YRBS::2011::Q26 YRBS::suicide_plan::past_12_months YRBS::2011 YRBS_NATIONAL::2011 YRBS United States 2011 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2011 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
55 YRBS::2011::Q27 YRBS::suicide_attempt::past_12_months YRBS::2011 YRBS_NATIONAL::2011 YRBS United States 2011 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q27 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2011 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
56 YRBS::2013::Q27 YRBS::suicide_ideation::past_12_months YRBS::2013 YRBS_NATIONAL::2013 YRBS United States 2013 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q27 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2013 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
57 YRBS::2013::Q28 YRBS::suicide_plan::past_12_months YRBS::2013 YRBS_NATIONAL::2013 YRBS United States 2013 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q28 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2013 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
58 YRBS::2013::Q29 YRBS::suicide_attempt::past_12_months YRBS::2013 YRBS_NATIONAL::2013 YRBS United States 2013 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q29 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2013 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
59 YRBS::2015::Q27 YRBS::suicide_ideation::past_12_months YRBS::2015 YRBS_NATIONAL::2015 YRBS United States 2015 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q27 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2015 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
60 YRBS::2015::Q28 YRBS::suicide_plan::past_12_months YRBS::2015 YRBS_NATIONAL::2015 YRBS United States 2015 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q28 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2015 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
61 YRBS::2015::Q29 YRBS::suicide_attempt::past_12_months YRBS::2015 YRBS_NATIONAL::2015 YRBS United States 2015 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q29 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2015 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
62 YRBS::2017::Q26 YRBS::suicide_ideation::past_12_months YRBS::2017 YRBS_NATIONAL::2017 YRBS United States 2017 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2017 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
63 YRBS::2017::Q27 YRBS::suicide_plan::past_12_months YRBS::2017 YRBS_NATIONAL::2017 YRBS United States 2017 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q27 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2017 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
64 YRBS::2017::Q28 YRBS::suicide_attempt::past_12_months YRBS::2017 YRBS_NATIONAL::2017 YRBS United States 2017 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q28 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2017 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
65 YRBS::2019::Q26 YRBS::suicide_ideation::past_12_months YRBS::2019 YRBS_NATIONAL::2019 YRBS United States 2019 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2019 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
66 YRBS::2019::Q27 YRBS::suicide_plan::past_12_months YRBS::2019 YRBS_NATIONAL::2019 YRBS United States 2019 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q27 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2019 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
67 YRBS::2019::Q28 YRBS::suicide_attempt::past_12_months YRBS::2019 YRBS_NATIONAL::2019 YRBS United States 2019 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q28 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2019 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
68 YRBS::2021::Q26 YRBS::suicide_ideation::past_12_months YRBS::2021 YRBS_NATIONAL::2021 YRBS United States 2021 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q26 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2021 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
69 YRBS::2021::Q27 YRBS::suicide_plan::past_12_months YRBS::2021 YRBS_NATIONAL::2021 YRBS United States 2021 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q27 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2021 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
70 YRBS::2021::Q28 YRBS::suicide_attempt::past_12_months YRBS::2021 YRBS_NATIONAL::2021 YRBS United States 2021 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q28 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2021 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
71 YRBS::2023::Q27 YRBS::suicide_ideation::past_12_months YRBS::2023 YRBS_NATIONAL::2023 YRBS United States 2023 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q27 During the past 12 months, did you ever seriously consider attempting suicide? 0b2df6b623cc9cd5521af275980c1b6a582eca3a15b67906ec05e822b0a67973 suicide_ideation past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2023 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
72 YRBS::2023::Q28 YRBS::suicide_plan::past_12_months YRBS::2023 YRBS_NATIONAL::2023 YRBS United States 2023 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q28 During the past 12 months, did you make a plan about how you would attempt suicide? f29777fd4c84bd3678e8a8e4ce69ee7e8ef49e0566c9ad5cf859e5e501ab0505 suicide_plan past 12 months binary English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2023 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
73 YRBS::2023::Q29 YRBS::suicide_attempt::past_12_months YRBS::2023 YRBS_NATIONAL::2023 YRBS United States 2023 national students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review Q29 During the past 12 months, how many times did you actually attempt suicide? 99ac037649ef18c5d98cfef87c554969bb89198e79635ffabdca871818c07d03 suicide_attempt past 12 months ordinal_frequency English questionnaire source; actual accommodation/language coverage not established by this audit YRBS national questionnaire 2023 available_full_table provisional_pipeline_development_only Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional blank/null retained as unresolved missing; annual guide reports Missing but does not distinguish reason
74 NSDUH::2021::YUSUITHK NSDUH::suicide_ideation::past_12_months NSDUH::2021 NSDUH_YOUTH::2021 NSDUH United States 2021 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUITHK The next few questions are about thoughts of suicide. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself ? 655dea94026d96937a368ed77fad63361078c7fecfcc1cd0bee8ae3b62cb8267 suicide_ideation past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2021 youth module available_in_local_public_use_table provisional_pipeline_development_only Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
75 NSDUH::2021::YUSUIPLN NSDUH::suicide_plan::past_12_months NSDUH::2021 NSDUH_YOUTH::2021 NSDUH United States 2021 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUIPLN During the past 12 months, did you make any plans to kill yourself? 66e41d31c31186b2c4804776d2c0d867ec70fb71113001338680724e9aef05d1 suicide_plan past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2021 youth module available_in_local_public_use_table provisional_pipeline_development_only Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
76 NSDUH::2022::YUSUITHK NSDUH::suicide_ideation::past_12_months NSDUH::2022 NSDUH_YOUTH::2022 NSDUH United States 2022 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUITHK Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 2e47c89fadeeb1ba172a1c3f701e18bbd0f9918dfd3042bb133777e39c9d6bf5 suicide_ideation past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2022 youth module available_in_local_public_use_table provisional_pipeline_development_only Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
77 NSDUH::2022::YUSUIPLN NSDUH::suicide_plan::past_12_months NSDUH::2022 NSDUH_YOUTH::2022 NSDUH United States 2022 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUIPLN During the past 12 months, did you make any plans to kill yourself? 66e41d31c31186b2c4804776d2c0d867ec70fb71113001338680724e9aef05d1 suicide_plan past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2022 youth module available_in_local_public_use_table provisional_pipeline_development_only Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
78 NSDUH::2023::YUSUITHK NSDUH::suicide_ideation::past_12_months NSDUH::2023 NSDUH_YOUTH::2023 NSDUH United States 2023 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUITHK Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 2e47c89fadeeb1ba172a1c3f701e18bbd0f9918dfd3042bb133777e39c9d6bf5 suicide_ideation past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2023 youth module available_in_local_public_use_table provisional_pipeline_development_only Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
79 NSDUH::2023::YUSUIPLN NSDUH::suicide_plan::past_12_months NSDUH::2023 NSDUH_YOUTH::2023 NSDUH United States 2023 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUIPLN During the past 12 months, did you make any plans to kill yourself? 66e41d31c31186b2c4804776d2c0d867ec70fb71113001338680724e9aef05d1 suicide_plan past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2023 youth module available_in_local_public_use_table provisional_pipeline_development_only Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
80 NSDUH::2024::YUSUITHK NSDUH::suicide_ideation::past_12_months NSDUH::2024 NSDUH_YOUTH::2024 NSDUH United States 2024 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUITHK Note: Beginning in 2022, questions YSUI01, YSUI02, YSUI03, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 7a688bc54040f6ff682b5b8194237060f829dc16cf91cf448865a76d7d7c3100 suicide_ideation past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2024 youth module available_in_local_public_use_table provisional_pipeline_development_only Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
81 NSDUH::2024::YUSUIPLN NSDUH::suicide_plan::past_12_months NSDUH::2024 NSDUH_YOUTH::2024 NSDUH United States 2024 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUIPLN During the past 12 months, did you make any plans to kill yourself? 66e41d31c31186b2c4804776d2c0d867ec70fb71113001338680724e9aef05d1 suicide_plan past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2024 youth module available_in_local_public_use_table provisional_pipeline_development_only Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional Keep 'not sure' and refusal/nonresponse distinct until skip and missing rules are verified.
82 NSDUH::2021::YUSUICTRY NSDUH::suicide_attempt::past_12_months NSDUH::2021 NSDUH_YOUTH::2021 NSDUH United States 2021 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUICTRY During the past 12 months, did you try to kill yourself? f870f158cf7b2a15b314ea5a07674ea5e3ca14a2155652cddb7f2f50806666e8 suicide_attempt past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2021 youth module administered_but_not_available_in_local_public_use_package not_analyzable_without_authorized_source https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional Asked of all adolescents aged 12–17, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source.
83 NSDUH::2022::YUSUICTRY NSDUH::suicide_attempt::past_12_months NSDUH::2022 NSDUH_YOUTH::2022 NSDUH United States 2022 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUICTRY During the past 12 months, did you try to kill yourself? f870f158cf7b2a15b314ea5a07674ea5e3ca14a2155652cddb7f2f50806666e8 suicide_attempt past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2022 youth module administered_but_not_available_in_local_public_use_package not_analyzable_without_authorized_source https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional Asked of all adolescents aged 12–17, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source.
84 NSDUH::2023::YUSUICTRY NSDUH::suicide_attempt::past_12_months NSDUH::2023 NSDUH_YOUTH::2023 NSDUH United States 2023 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUICTRY During the past 12 months, did you try to kill yourself? f870f158cf7b2a15b314ea5a07674ea5e3ca14a2155652cddb7f2f50806666e8 suicide_attempt past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2023 youth module administered_but_not_available_in_local_public_use_package not_analyzable_without_authorized_source https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional Asked of all adolescents aged 12–17, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source.
85 NSDUH::2024::YUSUICTRY NSDUH::suicide_attempt::past_12_months NSDUH::2024 NSDUH_YOUTH::2024 NSDUH United States 2024 national household survey youth module adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off YUSUICTRY During the past 12 months, did you try to kill yourself? f870f158cf7b2a15b314ea5a07674ea5e3ca14a2155652cddb7f2f50806666e8 suicide_attempt past 12 months categorical_binary_with_explicit_uncertainty English source metadata; administered-language/accommodation coverage not established NSDUH 2024 youth module administered_but_not_available_in_local_public_use_package not_analyzable_without_authorized_source https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional Asked of all adolescents aged 12–17, regardless of ideation response. Current local public-use schema omits the raw and recoded attempt variables; this row is not analyzable without an authorized source.
@@ -0,0 +1,85 @@
item_version_id,reviewer_1_decision,reviewer_2_decision,conflict_reason,adjudicator_name,adjudication_date,final_decision,final_question_text,final_construct,final_population,final_language,final_response_or_missing_rule,adjudication_notes,adjudicator_attestation
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,,,,,,,,,,,,,
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,,,,,,,,,,,,,
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,,,,,,,,,,,,,
YRBS::1991::Q19,,,,,,,,,,,,,
YRBS::1991::Q20,,,,,,,,,,,,,
YRBS::1991::Q21,,,,,,,,,,,,,
YRBS::1993::Q24,,,,,,,,,,,,,
YRBS::1993::Q25,,,,,,,,,,,,,
YRBS::1993::Q26,,,,,,,,,,,,,
YRBS::1995::Q22,,,,,,,,,,,,,
YRBS::1995::Q23,,,,,,,,,,,,,
YRBS::1995::Q24,,,,,,,,,,,,,
YRBS::1997::Q22,,,,,,,,,,,,,
YRBS::1997::Q23,,,,,,,,,,,,,
YRBS::1997::Q24,,,,,,,,,,,,,
YRBS::1999::Q23,,,,,,,,,,,,,
YRBS::1999::Q24,,,,,,,,,,,,,
YRBS::1999::Q25,,,,,,,,,,,,,
YRBS::2001::Q24,,,,,,,,,,,,,
YRBS::2001::Q25,,,,,,,,,,,,,
YRBS::2001::Q26,,,,,,,,,,,,,
YRBS::2003::Q24,,,,,,,,,,,,,
YRBS::2003::Q25,,,,,,,,,,,,,
YRBS::2003::Q26,,,,,,,,,,,,,
YRBS::2005::Q24,,,,,,,,,,,,,
YRBS::2005::Q25,,,,,,,,,,,,,
YRBS::2005::Q26,,,,,,,,,,,,,
YRBS::2007::Q24,,,,,,,,,,,,,
YRBS::2007::Q25,,,,,,,,,,,,,
YRBS::2007::Q26,,,,,,,,,,,,,
YRBS::2009::Q24,,,,,,,,,,,,,
YRBS::2009::Q25,,,,,,,,,,,,,
YRBS::2009::Q26,,,,,,,,,,,,,
YRBS::2011::Q25,,,,,,,,,,,,,
YRBS::2011::Q26,,,,,,,,,,,,,
YRBS::2011::Q27,,,,,,,,,,,,,
YRBS::2013::Q27,,,,,,,,,,,,,
YRBS::2013::Q28,,,,,,,,,,,,,
YRBS::2013::Q29,,,,,,,,,,,,,
YRBS::2015::Q27,,,,,,,,,,,,,
YRBS::2015::Q28,,,,,,,,,,,,,
YRBS::2015::Q29,,,,,,,,,,,,,
YRBS::2017::Q26,,,,,,,,,,,,,
YRBS::2017::Q27,,,,,,,,,,,,,
YRBS::2017::Q28,,,,,,,,,,,,,
YRBS::2019::Q26,,,,,,,,,,,,,
YRBS::2019::Q27,,,,,,,,,,,,,
YRBS::2019::Q28,,,,,,,,,,,,,
YRBS::2021::Q26,,,,,,,,,,,,,
YRBS::2021::Q27,,,,,,,,,,,,,
YRBS::2021::Q28,,,,,,,,,,,,,
YRBS::2023::Q27,,,,,,,,,,,,,
YRBS::2023::Q28,,,,,,,,,,,,,
YRBS::2023::Q29,,,,,,,,,,,,,
NSDUH::2021::YUSUITHK,,,,,,,,,,,,,
NSDUH::2021::YUSUIPLN,,,,,,,,,,,,,
NSDUH::2022::YUSUITHK,,,,,,,,,,,,,
NSDUH::2022::YUSUIPLN,,,,,,,,,,,,,
NSDUH::2023::YUSUITHK,,,,,,,,,,,,,
NSDUH::2023::YUSUIPLN,,,,,,,,,,,,,
NSDUH::2024::YUSUITHK,,,,,,,,,,,,,
NSDUH::2024::YUSUIPLN,,,,,,,,,,,,,
NSDUH::2021::YUSUICTRY,,,,,,,,,,,,,
NSDUH::2022::YUSUICTRY,,,,,,,,,,,,,
NSDUH::2023::YUSUICTRY,,,,,,,,,,,,,
NSDUH::2024::YUSUICTRY,,,,,,,,,,,,,
1 item_version_id reviewer_1_decision reviewer_2_decision conflict_reason adjudicator_name adjudication_date final_decision final_question_text final_construct final_population final_language final_response_or_missing_rule adjudication_notes adjudicator_attestation
2 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui
3 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui
4 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui
5 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui
6 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui
7 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui
8 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui
9 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui
10 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui
11 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui
12 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui
13 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui
14 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui
15 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui
16 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui
17 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui
18 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui
19 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui
20 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui
21 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui
22 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui
23 YRBS::1991::Q19
24 YRBS::1991::Q20
25 YRBS::1991::Q21
26 YRBS::1993::Q24
27 YRBS::1993::Q25
28 YRBS::1993::Q26
29 YRBS::1995::Q22
30 YRBS::1995::Q23
31 YRBS::1995::Q24
32 YRBS::1997::Q22
33 YRBS::1997::Q23
34 YRBS::1997::Q24
35 YRBS::1999::Q23
36 YRBS::1999::Q24
37 YRBS::1999::Q25
38 YRBS::2001::Q24
39 YRBS::2001::Q25
40 YRBS::2001::Q26
41 YRBS::2003::Q24
42 YRBS::2003::Q25
43 YRBS::2003::Q26
44 YRBS::2005::Q24
45 YRBS::2005::Q25
46 YRBS::2005::Q26
47 YRBS::2007::Q24
48 YRBS::2007::Q25
49 YRBS::2007::Q26
50 YRBS::2009::Q24
51 YRBS::2009::Q25
52 YRBS::2009::Q26
53 YRBS::2011::Q25
54 YRBS::2011::Q26
55 YRBS::2011::Q27
56 YRBS::2013::Q27
57 YRBS::2013::Q28
58 YRBS::2013::Q29
59 YRBS::2015::Q27
60 YRBS::2015::Q28
61 YRBS::2015::Q29
62 YRBS::2017::Q26
63 YRBS::2017::Q27
64 YRBS::2017::Q28
65 YRBS::2019::Q26
66 YRBS::2019::Q27
67 YRBS::2019::Q28
68 YRBS::2021::Q26
69 YRBS::2021::Q27
70 YRBS::2021::Q28
71 YRBS::2023::Q27
72 YRBS::2023::Q28
73 YRBS::2023::Q29
74 NSDUH::2021::YUSUITHK
75 NSDUH::2021::YUSUIPLN
76 NSDUH::2022::YUSUITHK
77 NSDUH::2022::YUSUIPLN
78 NSDUH::2023::YUSUITHK
79 NSDUH::2023::YUSUIPLN
80 NSDUH::2024::YUSUITHK
81 NSDUH::2024::YUSUIPLN
82 NSDUH::2021::YUSUICTRY
83 NSDUH::2022::YUSUICTRY
84 NSDUH::2023::YUSUICTRY
85 NSDUH::2024::YUSUICTRY
@@ -0,0 +1,85 @@
item_version_id,survey,component_id,construct,question_text,response_dictionary_rows,population,language,source_file,source_url,page_or_section,reviewer_name,reviewer_affiliation,review_date,decision,wording_verified,construct_verified,population_verified,response_codes_verified,skip_logic_verified,missing_rules_verified,language_evidence_status,corrected_question_text,corrected_construct,corrected_population,corrected_language,corrected_response_or_missing_rule,review_notes,independence_attestation
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,GSHS,2023_MAR_GSHS_v01::mar_fez2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q32,,,,,,,,,,,,,,,,,,
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,GSHS,2023_MAR_GSHS_v01::mar_fez2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q33,,,,,,,,,,,,,,,,,,
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,GSHS,2023_MAR_GSHS_v01::mar_fez2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,,,,,,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,GSHS,GHA_2022_GSHS_v01::gha_sek_tak2022,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q33,,,,,,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,GSHS,GHA_2022_GSHS_v01::gha_sek_tak2022,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q34,,,,,,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,GSHS,GHA_2022_GSHS_v01::gha_sek_tak2022,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,,,,,,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,GSHS,IND_2022_GSHS_v01::ind_jaipur_2022,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q34,,,,,,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,GSHS,IND_2022_GSHS_v01::ind_jaipur_2022,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q35,,,,,,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,GSHS,IND_2022_GSHS_v01::ind_jaipur_2022,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,,,,,,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,GSHS,JAM_2023_GSHS_v01::jam_st_cath_2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q28,,,,,,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,GSHS,JAM_2023_GSHS_v01::jam_st_cath_2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q29,,,,,,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,GSHS,JAM_2023_GSHS_v01::jam_st_cath_2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,,,,,,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,GSHS,MNG_2023_GSHS_v01::mng2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; Mongolian; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q36,,,,,,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,GSHS,MNG_2023_GSHS_v01::mng2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; Mongolian; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q37,,,,,,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,GSHS,MNG_2023_GSHS_v01::mng2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,English; Mongolian; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,,,,,,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,GSHS,SLB_2023_GSHS_v01::slb_2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,English catalog literal-question metadata; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,,,,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,GSHS,SLB_2023_GSHS_v01::slb_2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,English catalog literal-question metadata; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,,,,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,GSHS,SLB_2023_GSHS_v01::slb_2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,English catalog literal-question metadata; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,,,,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,GSHS,WLF_2023_GSHS_v01::wlf_2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q29,,,,,,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,GSHS,WLF_2023_GSHS_v01::wlf_2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q30,,,,,,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,GSHS,WLF_2023_GSHS_v01::wlf_2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,,,,,,,,,,,,,,,,,,
YRBS::1991::Q19,YRBS,YRBS_NATIONAL::1991,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,,,,,,,,,,,,,,,,
YRBS::1991::Q20,YRBS,YRBS_NATIONAL::1991,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,,,,,,,,,,,,,,,,
YRBS::1991::Q21,YRBS,YRBS_NATIONAL::1991,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,,,,,,,,,,,,,,,,
YRBS::1993::Q24,YRBS,YRBS_NATIONAL::1993,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,,,,,,,,,,,,,,,,
YRBS::1993::Q25,YRBS,YRBS_NATIONAL::1993,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,,,,,,,,,,,,,,,,
YRBS::1993::Q26,YRBS,YRBS_NATIONAL::1993,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,,,,,,,,,,,,,,,,
YRBS::1995::Q22,YRBS,YRBS_NATIONAL::1995,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1995::Q23,YRBS,YRBS_NATIONAL::1995,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1995::Q24,YRBS,YRBS_NATIONAL::1995,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1997::Q22,YRBS,YRBS_NATIONAL::1997,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1997::Q23,YRBS,YRBS_NATIONAL::1997,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1997::Q24,YRBS,YRBS_NATIONAL::1997,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1999::Q23,YRBS,YRBS_NATIONAL::1999,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,,,,,,,,,,,,,,,,
YRBS::1999::Q24,YRBS,YRBS_NATIONAL::1999,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,,,,,,,,,,,,,,,,
YRBS::1999::Q25,YRBS,YRBS_NATIONAL::1999,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,,,,,,,,,,,,,,,,
YRBS::2001::Q24,YRBS,YRBS_NATIONAL::2001,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,,,,,,,,,,,,,,,,
YRBS::2001::Q25,YRBS,YRBS_NATIONAL::2001,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,,,,,,,,,,,,,,,,
YRBS::2001::Q26,YRBS,YRBS_NATIONAL::2001,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,,,,,,,,,,,,,,,,
YRBS::2003::Q24,YRBS,YRBS_NATIONAL::2003,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,,,,,,,,,,,,,,,,
YRBS::2003::Q25,YRBS,YRBS_NATIONAL::2003,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,,,,,,,,,,,,,,,,
YRBS::2003::Q26,YRBS,YRBS_NATIONAL::2003,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,,,,,,,,,,,,,,,,
YRBS::2005::Q24,YRBS,YRBS_NATIONAL::2005,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,,,,,,,,,,,,,,,,
YRBS::2005::Q25,YRBS,YRBS_NATIONAL::2005,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,,,,,,,,,,,,,,,,
YRBS::2005::Q26,YRBS,YRBS_NATIONAL::2005,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,,,,,,,,,,,,,,,,
YRBS::2007::Q24,YRBS,YRBS_NATIONAL::2007,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2007::Q25,YRBS,YRBS_NATIONAL::2007,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2007::Q26,YRBS,YRBS_NATIONAL::2007,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2009::Q24,YRBS,YRBS_NATIONAL::2009,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,,,,,,,,,,,,,,,,
YRBS::2009::Q25,YRBS,YRBS_NATIONAL::2009,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,,,,,,,,,,,,,,,,
YRBS::2009::Q26,YRBS,YRBS_NATIONAL::2009,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,,,,,,,,,,,,,,,,
YRBS::2011::Q25,YRBS,YRBS_NATIONAL::2011,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2011::Q26,YRBS,YRBS_NATIONAL::2011,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2011::Q27,YRBS,YRBS_NATIONAL::2011,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2013::Q27,YRBS,YRBS_NATIONAL::2013,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2013::Q28,YRBS,YRBS_NATIONAL::2013,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2013::Q29,YRBS,YRBS_NATIONAL::2013,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2015::Q27,YRBS,YRBS_NATIONAL::2015,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2015::Q28,YRBS,YRBS_NATIONAL::2015,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2015::Q29,YRBS,YRBS_NATIONAL::2015,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2017::Q26,YRBS,YRBS_NATIONAL::2017,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2017::Q27,YRBS,YRBS_NATIONAL::2017,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2017::Q28,YRBS,YRBS_NATIONAL::2017,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2019::Q26,YRBS,YRBS_NATIONAL::2019,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,,,,,,,,,,,,,,,,
YRBS::2019::Q27,YRBS,YRBS_NATIONAL::2019,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,,,,,,,,,,,,,,,,
YRBS::2019::Q28,YRBS,YRBS_NATIONAL::2019,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,,,,,,,,,,,,,,,,
YRBS::2021::Q26,YRBS,YRBS_NATIONAL::2021,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2021::Q27,YRBS,YRBS_NATIONAL::2021,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2021::Q28,YRBS,YRBS_NATIONAL::2021,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2023::Q27,YRBS,YRBS_NATIONAL::2023,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2023::Q28,YRBS,YRBS_NATIONAL::2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2023::Q29,YRBS,YRBS_NATIONAL::2023,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,,,,,,,,,,,,,,,,
NSDUH::2021::YUSUITHK,NSDUH,NSDUH_YOUTH::2021,suicide_ideation,"The next few questions are about thoughts of suicide. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself ?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,,,,,,,,,,,,,,,,,,
NSDUH::2021::YUSUIPLN,NSDUH,NSDUH_YOUTH::2021,suicide_plan,"During the past 12 months, did you make any plans to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,,,,,,,,,,,,,,,,,,
NSDUH::2022::YUSUITHK,NSDUH,NSDUH_YOUTH::2022,suicide_ideation,"Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,,,,,,,,,,,,,,,,,,
NSDUH::2022::YUSUIPLN,NSDUH,NSDUH_YOUTH::2022,suicide_plan,"During the past 12 months, did you make any plans to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,,,,,,,,,,,,,,,,,,
NSDUH::2023::YUSUITHK,NSDUH,NSDUH_YOUTH::2023,suicide_ideation,"Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,,,,,,,,,,,,,,,,,,
NSDUH::2023::YUSUIPLN,NSDUH,NSDUH_YOUTH::2023,suicide_plan,"During the past 12 months, did you make any plans to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,,,,,,,,,,,,,,,,,,
NSDUH::2024::YUSUITHK,NSDUH,NSDUH_YOUTH::2024,suicide_ideation,"Note: Beginning in 2022, questions YSUI01, YSUI02, YSUI03, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,,,,,,,,,,,,,,,,,,
NSDUH::2024::YUSUIPLN,NSDUH,NSDUH_YOUTH::2024,suicide_plan,"During the past 12 months, did you make any plans to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,,,,,,,,,,,,,,,,,,
NSDUH::2021::YUSUICTRY,NSDUH,NSDUH_YOUTH::2021,suicide_attempt,"During the past 12 months, did you try to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,,,,,,,,,,,,,,,,,,
NSDUH::2022::YUSUICTRY,NSDUH,NSDUH_YOUTH::2022,suicide_attempt,"During the past 12 months, did you try to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,,,,,,,,,,,,,,,,,,
NSDUH::2023::YUSUICTRY,NSDUH,NSDUH_YOUTH::2023,suicide_attempt,"During the past 12 months, did you try to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,,,,,,,,,,,,,,,,,,
NSDUH::2024::YUSUICTRY,NSDUH,NSDUH_YOUTH::2024,suicide_attempt,"During the past 12 months, did you try to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,,,,,,,,,,,,,,,,,,
1 item_version_id survey component_id construct question_text response_dictionary_rows population language source_file source_url page_or_section reviewer_name reviewer_affiliation review_date decision wording_verified construct_verified population_verified response_codes_verified skip_logic_verified missing_rules_verified language_evidence_status corrected_question_text corrected_construct corrected_population corrected_language corrected_response_or_missing_rule review_notes independence_attestation
2 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui GSHS 2023_MAR_GSHS_v01::mar_fez2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q32
3 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui GSHS 2023_MAR_GSHS_v01::mar_fez2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q33
4 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui GSHS 2023_MAR_GSHS_v01::mar_fez2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34
5 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui GSHS GHA_2022_GSHS_v01::gha_sek_tak2022 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q33
6 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui GSHS GHA_2022_GSHS_v01::gha_sek_tak2022 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q34
7 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui GSHS GHA_2022_GSHS_v01::gha_sek_tak2022 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35
8 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui GSHS IND_2022_GSHS_v01::ind_jaipur_2022 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q34
9 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui GSHS IND_2022_GSHS_v01::ind_jaipur_2022 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q35
10 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui GSHS IND_2022_GSHS_v01::ind_jaipur_2022 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36
11 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui GSHS JAM_2023_GSHS_v01::jam_st_cath_2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q28
12 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui GSHS JAM_2023_GSHS_v01::jam_st_cath_2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q29
13 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui GSHS JAM_2023_GSHS_v01::jam_st_cath_2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30
14 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui GSHS MNG_2023_GSHS_v01::mng2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; Mongolian; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q36
15 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui GSHS MNG_2023_GSHS_v01::mng2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; Mongolian; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q37
16 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui GSHS MNG_2023_GSHS_v01::mng2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review English; Mongolian; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38
17 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui GSHS SLB_2023_GSHS_v01::slb_2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible English catalog literal-question metadata; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit
18 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui GSHS SLB_2023_GSHS_v01::slb_2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible English catalog literal-question metadata; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit
19 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui GSHS SLB_2023_GSHS_v01::slb_2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible English catalog literal-question metadata; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit
20 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui GSHS WLF_2023_GSHS_v01::wlf_2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q29
21 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui GSHS WLF_2023_GSHS_v01::wlf_2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q30
22 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui GSHS WLF_2023_GSHS_v01::wlf_2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31
23 YRBS::1991::Q19 YRBS YRBS_NATIONAL::1991 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9
24 YRBS::1991::Q20 YRBS YRBS_NATIONAL::1991 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9
25 YRBS::1991::Q21 YRBS YRBS_NATIONAL::1991 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9
26 YRBS::1993::Q24 YRBS YRBS_NATIONAL::1993 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11
27 YRBS::1993::Q25 YRBS YRBS_NATIONAL::1993 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11
28 YRBS::1993::Q26 YRBS YRBS_NATIONAL::1993 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11
29 YRBS::1995::Q22 YRBS YRBS_NATIONAL::1995 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12
30 YRBS::1995::Q23 YRBS YRBS_NATIONAL::1995 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12
31 YRBS::1995::Q24 YRBS YRBS_NATIONAL::1995 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12
32 YRBS::1997::Q22 YRBS YRBS_NATIONAL::1997 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12
33 YRBS::1997::Q23 YRBS YRBS_NATIONAL::1997 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12
34 YRBS::1997::Q24 YRBS YRBS_NATIONAL::1997 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12
35 YRBS::1999::Q23 YRBS YRBS_NATIONAL::1999 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7
36 YRBS::1999::Q24 YRBS YRBS_NATIONAL::1999 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7
37 YRBS::1999::Q25 YRBS YRBS_NATIONAL::1999 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7
38 YRBS::2001::Q24 YRBS YRBS_NATIONAL::2001 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9
39 YRBS::2001::Q25 YRBS YRBS_NATIONAL::2001 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9
40 YRBS::2001::Q26 YRBS YRBS_NATIONAL::2001 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9
41 YRBS::2003::Q24 YRBS YRBS_NATIONAL::2003 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10
42 YRBS::2003::Q25 YRBS YRBS_NATIONAL::2003 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10
43 YRBS::2003::Q26 YRBS YRBS_NATIONAL::2003 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10
44 YRBS::2005::Q24 YRBS YRBS_NATIONAL::2005 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17
45 YRBS::2005::Q25 YRBS YRBS_NATIONAL::2005 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17
46 YRBS::2005::Q26 YRBS YRBS_NATIONAL::2005 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17
47 YRBS::2007::Q24 YRBS YRBS_NATIONAL::2007 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20
48 YRBS::2007::Q25 YRBS YRBS_NATIONAL::2007 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20
49 YRBS::2007::Q26 YRBS YRBS_NATIONAL::2007 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20
50 YRBS::2009::Q24 YRBS YRBS_NATIONAL::2009 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22
51 YRBS::2009::Q25 YRBS YRBS_NATIONAL::2009 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22
52 YRBS::2009::Q26 YRBS YRBS_NATIONAL::2009 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22
53 YRBS::2011::Q25 YRBS YRBS_NATIONAL::2011 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20
54 YRBS::2011::Q26 YRBS YRBS_NATIONAL::2011 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20
55 YRBS::2011::Q27 YRBS YRBS_NATIONAL::2011 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20
56 YRBS::2013::Q27 YRBS YRBS_NATIONAL::2013 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28
57 YRBS::2013::Q28 YRBS YRBS_NATIONAL::2013 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28
58 YRBS::2013::Q29 YRBS YRBS_NATIONAL::2013 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28
59 YRBS::2015::Q27 YRBS YRBS_NATIONAL::2015 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29
60 YRBS::2015::Q28 YRBS YRBS_NATIONAL::2015 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29
61 YRBS::2015::Q29 YRBS YRBS_NATIONAL::2015 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29
62 YRBS::2017::Q26 YRBS YRBS_NATIONAL::2017 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29
63 YRBS::2017::Q27 YRBS YRBS_NATIONAL::2017 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29
64 YRBS::2017::Q28 YRBS YRBS_NATIONAL::2017 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29
65 YRBS::2019::Q26 YRBS YRBS_NATIONAL::2019 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28
66 YRBS::2019::Q27 YRBS YRBS_NATIONAL::2019 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28
67 YRBS::2019::Q28 YRBS YRBS_NATIONAL::2019 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28
68 YRBS::2021::Q26 YRBS YRBS_NATIONAL::2021 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28
69 YRBS::2021::Q27 YRBS YRBS_NATIONAL::2021 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28
70 YRBS::2021::Q28 YRBS YRBS_NATIONAL::2021 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28
71 YRBS::2023::Q27 YRBS YRBS_NATIONAL::2023 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29
72 YRBS::2023::Q28 YRBS YRBS_NATIONAL::2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29
73 YRBS::2023::Q29 YRBS YRBS_NATIONAL::2023 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29
74 NSDUH::2021::YUSUITHK NSDUH NSDUH_YOUTH::2021 suicide_ideation The next few questions are about thoughts of suicide. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself ? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK
75 NSDUH::2021::YUSUIPLN NSDUH NSDUH_YOUTH::2021 suicide_plan During the past 12 months, did you make any plans to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN
76 NSDUH::2022::YUSUITHK NSDUH NSDUH_YOUTH::2022 suicide_ideation Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK
77 NSDUH::2022::YUSUIPLN NSDUH NSDUH_YOUTH::2022 suicide_plan During the past 12 months, did you make any plans to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN
78 NSDUH::2023::YUSUITHK NSDUH NSDUH_YOUTH::2023 suicide_ideation Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK
79 NSDUH::2023::YUSUIPLN NSDUH NSDUH_YOUTH::2023 suicide_plan During the past 12 months, did you make any plans to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN
80 NSDUH::2024::YUSUITHK NSDUH NSDUH_YOUTH::2024 suicide_ideation Note: Beginning in 2022, questions YSUI01, YSUI02, YSUI03, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK
81 NSDUH::2024::YUSUIPLN NSDUH NSDUH_YOUTH::2024 suicide_plan During the past 12 months, did you make any plans to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN
82 NSDUH::2021::YUSUICTRY NSDUH NSDUH_YOUTH::2021 suicide_attempt During the past 12 months, did you try to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03
83 NSDUH::2022::YUSUICTRY NSDUH NSDUH_YOUTH::2022 suicide_attempt During the past 12 months, did you try to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03
84 NSDUH::2023::YUSUICTRY NSDUH NSDUH_YOUTH::2023 suicide_attempt During the past 12 months, did you try to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03
85 NSDUH::2024::YUSUICTRY NSDUH NSDUH_YOUTH::2024 suicide_attempt During the past 12 months, did you try to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03
@@ -0,0 +1,85 @@
item_version_id,survey,component_id,construct,question_text,response_dictionary_rows,population,language,source_file,source_url,page_or_section,reviewer_name,reviewer_affiliation,review_date,decision,wording_verified,construct_verified,population_verified,response_codes_verified,skip_logic_verified,missing_rules_verified,language_evidence_status,corrected_question_text,corrected_construct,corrected_population,corrected_language,corrected_response_or_missing_rule,review_notes,independence_attestation
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,GSHS,2023_MAR_GSHS_v01::mar_fez2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q32,,,,,,,,,,,,,,,,,,
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,GSHS,2023_MAR_GSHS_v01::mar_fez2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q33,,,,,,,,,,,,,,,,,,
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,GSHS,2023_MAR_GSHS_v01::mar_fez2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,,,,,,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,GSHS,GHA_2022_GSHS_v01::gha_sek_tak2022,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q33,,,,,,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,GSHS,GHA_2022_GSHS_v01::gha_sek_tak2022,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q34,,,,,,,,,,,,,,,,,,
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,GSHS,GHA_2022_GSHS_v01::gha_sek_tak2022,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,,,,,,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,GSHS,IND_2022_GSHS_v01::ind_jaipur_2022,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q34,,,,,,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,GSHS,IND_2022_GSHS_v01::ind_jaipur_2022,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q35,,,,,,,,,,,,,,,,,,
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,GSHS,IND_2022_GSHS_v01::ind_jaipur_2022,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,,,,,,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,GSHS,JAM_2023_GSHS_v01::jam_st_cath_2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q28,,,,,,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,GSHS,JAM_2023_GSHS_v01::jam_st_cath_2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q29,,,,,,,,,,,,,,,,,,
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,GSHS,JAM_2023_GSHS_v01::jam_st_cath_2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,English; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,,,,,,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,GSHS,MNG_2023_GSHS_v01::mng2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; Mongolian; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q36,,,,,,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,GSHS,MNG_2023_GSHS_v01::mng2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,English; Mongolian; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q37,,,,,,,,,,,,,,,,,,
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,GSHS,MNG_2023_GSHS_v01::mng2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,English; Mongolian; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,,,,,,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,GSHS,SLB_2023_GSHS_v01::slb_2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,English catalog literal-question metadata; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,,,,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,GSHS,SLB_2023_GSHS_v01::slb_2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,English catalog literal-question metadata; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,,,,,,,,,,,,,,,,
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,GSHS,SLB_2023_GSHS_v01::slb_2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,English catalog literal-question metadata; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,,,,,,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,GSHS,WLF_2023_GSHS_v01::wlf_2023,suicide_ideation,"During the past 12 months, did you seriously consider attempting suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q29,,,,,,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,GSHS,WLF_2023_GSHS_v01::wlf_2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q30,,,,,,,,,,,,,,,,,,
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,GSHS,WLF_2023_GSHS_v01::wlf_2023,suicide_attempt,"During the past 12 months, how many times did you attempt suicide?",6,school-attending students; exact sampled ages/grades remain pending component source review,French; English reference; actual administered language not established,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,,,,,,,,,,,,,,,,,,
YRBS::1991::Q19,YRBS,YRBS_NATIONAL::1991,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,,,,,,,,,,,,,,,,
YRBS::1991::Q20,YRBS,YRBS_NATIONAL::1991,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,,,,,,,,,,,,,,,,
YRBS::1991::Q21,YRBS,YRBS_NATIONAL::1991,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,,,,,,,,,,,,,,,,,,
YRBS::1993::Q24,YRBS,YRBS_NATIONAL::1993,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,,,,,,,,,,,,,,,,
YRBS::1993::Q25,YRBS,YRBS_NATIONAL::1993,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,,,,,,,,,,,,,,,,
YRBS::1993::Q26,YRBS,YRBS_NATIONAL::1993,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,,,,,,,,,,,,,,,,,,
YRBS::1995::Q22,YRBS,YRBS_NATIONAL::1995,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1995::Q23,YRBS,YRBS_NATIONAL::1995,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1995::Q24,YRBS,YRBS_NATIONAL::1995,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1997::Q22,YRBS,YRBS_NATIONAL::1997,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1997::Q23,YRBS,YRBS_NATIONAL::1997,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1997::Q24,YRBS,YRBS_NATIONAL::1997,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,,,,,,,,,,,,,,,,,,
YRBS::1999::Q23,YRBS,YRBS_NATIONAL::1999,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,,,,,,,,,,,,,,,,
YRBS::1999::Q24,YRBS,YRBS_NATIONAL::1999,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,,,,,,,,,,,,,,,,
YRBS::1999::Q25,YRBS,YRBS_NATIONAL::1999,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,,,,,,,,,,,,,,,,,,
YRBS::2001::Q24,YRBS,YRBS_NATIONAL::2001,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,,,,,,,,,,,,,,,,
YRBS::2001::Q25,YRBS,YRBS_NATIONAL::2001,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,,,,,,,,,,,,,,,,
YRBS::2001::Q26,YRBS,YRBS_NATIONAL::2001,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,,,,,,,,,,,,,,,,,,
YRBS::2003::Q24,YRBS,YRBS_NATIONAL::2003,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,,,,,,,,,,,,,,,,
YRBS::2003::Q25,YRBS,YRBS_NATIONAL::2003,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,,,,,,,,,,,,,,,,
YRBS::2003::Q26,YRBS,YRBS_NATIONAL::2003,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,,,,,,,,,,,,,,,,,,
YRBS::2005::Q24,YRBS,YRBS_NATIONAL::2005,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,,,,,,,,,,,,,,,,
YRBS::2005::Q25,YRBS,YRBS_NATIONAL::2005,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,,,,,,,,,,,,,,,,
YRBS::2005::Q26,YRBS,YRBS_NATIONAL::2005,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,,,,,,,,,,,,,,,,,,
YRBS::2007::Q24,YRBS,YRBS_NATIONAL::2007,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2007::Q25,YRBS,YRBS_NATIONAL::2007,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2007::Q26,YRBS,YRBS_NATIONAL::2007,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2009::Q24,YRBS,YRBS_NATIONAL::2009,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,,,,,,,,,,,,,,,,
YRBS::2009::Q25,YRBS,YRBS_NATIONAL::2009,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,,,,,,,,,,,,,,,,
YRBS::2009::Q26,YRBS,YRBS_NATIONAL::2009,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,,,,,,,,,,,,,,,,,,
YRBS::2011::Q25,YRBS,YRBS_NATIONAL::2011,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2011::Q26,YRBS,YRBS_NATIONAL::2011,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2011::Q27,YRBS,YRBS_NATIONAL::2011,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,,,,,,,,,,,,,,,,,,
YRBS::2013::Q27,YRBS,YRBS_NATIONAL::2013,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2013::Q28,YRBS,YRBS_NATIONAL::2013,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2013::Q29,YRBS,YRBS_NATIONAL::2013,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2015::Q27,YRBS,YRBS_NATIONAL::2015,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2015::Q28,YRBS,YRBS_NATIONAL::2015,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2015::Q29,YRBS,YRBS_NATIONAL::2015,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2017::Q26,YRBS,YRBS_NATIONAL::2017,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2017::Q27,YRBS,YRBS_NATIONAL::2017,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2017::Q28,YRBS,YRBS_NATIONAL::2017,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2019::Q26,YRBS,YRBS_NATIONAL::2019,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,,,,,,,,,,,,,,,,
YRBS::2019::Q27,YRBS,YRBS_NATIONAL::2019,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,,,,,,,,,,,,,,,,
YRBS::2019::Q28,YRBS,YRBS_NATIONAL::2019,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,,,,,,,,,,,,,,,,,,
YRBS::2021::Q26,YRBS,YRBS_NATIONAL::2021,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2021::Q27,YRBS,YRBS_NATIONAL::2021,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2021::Q28,YRBS,YRBS_NATIONAL::2021,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,,,,,,,,,,,,,,,,,,
YRBS::2023::Q27,YRBS,YRBS_NATIONAL::2023,suicide_ideation,"During the past 12 months, did you ever seriously consider attempting suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2023::Q28,YRBS,YRBS_NATIONAL::2023,suicide_plan,"During the past 12 months, did you make a plan about how you would attempt suicide?",3,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,,,,,,,,,,,,,,,,
YRBS::2023::Q29,YRBS,YRBS_NATIONAL::2023,suicide_attempt,"During the past 12 months, how many times did you actually attempt suicide?",6,students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review,English questionnaire source; actual accommodation/language coverage not established by this audit,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,,,,,,,,,,,,,,,,,,
NSDUH::2021::YUSUITHK,NSDUH,NSDUH_YOUTH::2021,suicide_ideation,"The next few questions are about thoughts of suicide. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself ?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,,,,,,,,,,,,,,,,,,
NSDUH::2021::YUSUIPLN,NSDUH,NSDUH_YOUTH::2021,suicide_plan,"During the past 12 months, did you make any plans to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,,,,,,,,,,,,,,,,,,
NSDUH::2022::YUSUITHK,NSDUH,NSDUH_YOUTH::2022,suicide_ideation,"Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,,,,,,,,,,,,,,,,,,
NSDUH::2022::YUSUIPLN,NSDUH,NSDUH_YOUTH::2022,suicide_plan,"During the past 12 months, did you make any plans to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,,,,,,,,,,,,,,,,,,
NSDUH::2023::YUSUITHK,NSDUH,NSDUH_YOUTH::2023,suicide_ideation,"Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,,,,,,,,,,,,,,,,,,
NSDUH::2023::YUSUIPLN,NSDUH,NSDUH_YOUTH::2023,suicide_plan,"During the past 12 months, did you make any plans to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,,,,,,,,,,,,,,,,,,
NSDUH::2024::YUSUITHK,NSDUH,NSDUH_YOUTH::2024,suicide_ideation,"Note: Beginning in 2022, questions YSUI01, YSUI02, YSUI03, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “Im not sure” or “I dont want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,,,,,,,,,,,,,,,,,,
NSDUH::2024::YUSUIPLN,NSDUH,NSDUH_YOUTH::2024,suicide_plan,"During the past 12 months, did you make any plans to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,,,,,,,,,,,,,,,,,,
NSDUH::2021::YUSUICTRY,NSDUH,NSDUH_YOUTH::2021,suicide_attempt,"During the past 12 months, did you try to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,,,,,,,,,,,,,,,,,,
NSDUH::2022::YUSUICTRY,NSDUH,NSDUH_YOUTH::2022,suicide_attempt,"During the past 12 months, did you try to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,,,,,,,,,,,,,,,,,,
NSDUH::2023::YUSUICTRY,NSDUH,NSDUH_YOUTH::2023,suicide_attempt,"During the past 12 months, did you try to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,,,,,,,,,,,,,,,,,,
NSDUH::2024::YUSUICTRY,NSDUH,NSDUH_YOUTH::2024,suicide_attempt,"During the past 12 months, did you try to kill yourself?",9,adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off,English source metadata; administered-language/accommodation coverage not established,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,,,,,,,,,,,,,,,,,,
1 item_version_id survey component_id construct question_text response_dictionary_rows population language source_file source_url page_or_section reviewer_name reviewer_affiliation review_date decision wording_verified construct_verified population_verified response_codes_verified skip_logic_verified missing_rules_verified language_evidence_status corrected_question_text corrected_construct corrected_population corrected_language corrected_response_or_missing_rule review_notes independence_attestation
2 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui GSHS 2023_MAR_GSHS_v01::mar_fez2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q32
3 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui GSHS 2023_MAR_GSHS_v01::mar_fez2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q33
4 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui GSHS 2023_MAR_GSHS_v01::mar_fez2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34
5 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui GSHS GHA_2022_GSHS_v01::gha_sek_tak2022 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q33
6 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui GSHS GHA_2022_GSHS_v01::gha_sek_tak2022 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q34
7 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui GSHS GHA_2022_GSHS_v01::gha_sek_tak2022 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35
8 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui GSHS IND_2022_GSHS_v01::ind_jaipur_2022 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q34
9 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui GSHS IND_2022_GSHS_v01::ind_jaipur_2022 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q35
10 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui GSHS IND_2022_GSHS_v01::ind_jaipur_2022 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36
11 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui GSHS JAM_2023_GSHS_v01::jam_st_cath_2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q28
12 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui GSHS JAM_2023_GSHS_v01::jam_st_cath_2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q29
13 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui GSHS JAM_2023_GSHS_v01::jam_st_cath_2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review English; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30
14 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui GSHS MNG_2023_GSHS_v01::mng2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; Mongolian; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q36
15 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui GSHS MNG_2023_GSHS_v01::mng2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review English; Mongolian; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q37
16 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui GSHS MNG_2023_GSHS_v01::mng2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review English; Mongolian; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38
17 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui GSHS SLB_2023_GSHS_v01::slb_2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible English catalog literal-question metadata; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit
18 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui GSHS SLB_2023_GSHS_v01::slb_2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible English catalog literal-question metadata; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit
19 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui GSHS SLB_2023_GSHS_v01::slb_2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible English catalog literal-question metadata; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit
20 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui GSHS WLF_2023_GSHS_v01::wlf_2023 suicide_ideation During the past 12 months, did you seriously consider attempting suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q29
21 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui GSHS WLF_2023_GSHS_v01::wlf_2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q30
22 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui GSHS WLF_2023_GSHS_v01::wlf_2023 suicide_attempt During the past 12 months, how many times did you attempt suicide? 6 school-attending students; exact sampled ages/grades remain pending component source review French; English reference; actual administered language not established Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31
23 YRBS::1991::Q19 YRBS YRBS_NATIONAL::1991 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9
24 YRBS::1991::Q20 YRBS YRBS_NATIONAL::1991 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9
25 YRBS::1991::Q21 YRBS YRBS_NATIONAL::1991 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9
26 YRBS::1993::Q24 YRBS YRBS_NATIONAL::1993 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11
27 YRBS::1993::Q25 YRBS YRBS_NATIONAL::1993 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11
28 YRBS::1993::Q26 YRBS YRBS_NATIONAL::1993 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11
29 YRBS::1995::Q22 YRBS YRBS_NATIONAL::1995 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12
30 YRBS::1995::Q23 YRBS YRBS_NATIONAL::1995 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12
31 YRBS::1995::Q24 YRBS YRBS_NATIONAL::1995 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12
32 YRBS::1997::Q22 YRBS YRBS_NATIONAL::1997 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12
33 YRBS::1997::Q23 YRBS YRBS_NATIONAL::1997 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12
34 YRBS::1997::Q24 YRBS YRBS_NATIONAL::1997 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12
35 YRBS::1999::Q23 YRBS YRBS_NATIONAL::1999 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7
36 YRBS::1999::Q24 YRBS YRBS_NATIONAL::1999 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7
37 YRBS::1999::Q25 YRBS YRBS_NATIONAL::1999 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7
38 YRBS::2001::Q24 YRBS YRBS_NATIONAL::2001 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9
39 YRBS::2001::Q25 YRBS YRBS_NATIONAL::2001 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9
40 YRBS::2001::Q26 YRBS YRBS_NATIONAL::2001 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9
41 YRBS::2003::Q24 YRBS YRBS_NATIONAL::2003 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10
42 YRBS::2003::Q25 YRBS YRBS_NATIONAL::2003 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10
43 YRBS::2003::Q26 YRBS YRBS_NATIONAL::2003 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10
44 YRBS::2005::Q24 YRBS YRBS_NATIONAL::2005 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17
45 YRBS::2005::Q25 YRBS YRBS_NATIONAL::2005 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17
46 YRBS::2005::Q26 YRBS YRBS_NATIONAL::2005 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17
47 YRBS::2007::Q24 YRBS YRBS_NATIONAL::2007 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20
48 YRBS::2007::Q25 YRBS YRBS_NATIONAL::2007 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20
49 YRBS::2007::Q26 YRBS YRBS_NATIONAL::2007 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20
50 YRBS::2009::Q24 YRBS YRBS_NATIONAL::2009 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22
51 YRBS::2009::Q25 YRBS YRBS_NATIONAL::2009 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22
52 YRBS::2009::Q26 YRBS YRBS_NATIONAL::2009 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22
53 YRBS::2011::Q25 YRBS YRBS_NATIONAL::2011 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20
54 YRBS::2011::Q26 YRBS YRBS_NATIONAL::2011 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20
55 YRBS::2011::Q27 YRBS YRBS_NATIONAL::2011 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20
56 YRBS::2013::Q27 YRBS YRBS_NATIONAL::2013 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28
57 YRBS::2013::Q28 YRBS YRBS_NATIONAL::2013 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28
58 YRBS::2013::Q29 YRBS YRBS_NATIONAL::2013 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28
59 YRBS::2015::Q27 YRBS YRBS_NATIONAL::2015 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29
60 YRBS::2015::Q28 YRBS YRBS_NATIONAL::2015 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29
61 YRBS::2015::Q29 YRBS YRBS_NATIONAL::2015 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29
62 YRBS::2017::Q26 YRBS YRBS_NATIONAL::2017 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29
63 YRBS::2017::Q27 YRBS YRBS_NATIONAL::2017 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29
64 YRBS::2017::Q28 YRBS YRBS_NATIONAL::2017 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29
65 YRBS::2019::Q26 YRBS YRBS_NATIONAL::2019 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28
66 YRBS::2019::Q27 YRBS YRBS_NATIONAL::2019 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28
67 YRBS::2019::Q28 YRBS YRBS_NATIONAL::2019 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28
68 YRBS::2021::Q26 YRBS YRBS_NATIONAL::2021 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28
69 YRBS::2021::Q27 YRBS YRBS_NATIONAL::2021 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28
70 YRBS::2021::Q28 YRBS YRBS_NATIONAL::2021 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28
71 YRBS::2023::Q27 YRBS YRBS_NATIONAL::2023 suicide_ideation During the past 12 months, did you ever seriously consider attempting suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29
72 YRBS::2023::Q28 YRBS YRBS_NATIONAL::2023 suicide_plan During the past 12 months, did you make a plan about how you would attempt suicide? 3 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29
73 YRBS::2023::Q29 YRBS YRBS_NATIONAL::2023 suicide_attempt During the past 12 months, how many times did you actually attempt suicide? 6 students in grades 9-12 attending public and private schools in the United States; detailed eligibility remains subject to annual design review English questionnaire source; actual accommodation/language coverage not established by this audit Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29
74 NSDUH::2021::YUSUITHK NSDUH NSDUH_YOUTH::2021 suicide_ideation The next few questions are about thoughts of suicide. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself ? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK
75 NSDUH::2021::YUSUIPLN NSDUH NSDUH_YOUTH::2021 suicide_plan During the past 12 months, did you make any plans to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN
76 NSDUH::2022::YUSUITHK NSDUH NSDUH_YOUTH::2022 suicide_ideation Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK
77 NSDUH::2022::YUSUIPLN NSDUH NSDUH_YOUTH::2022 suicide_plan During the past 12 months, did you make any plans to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN
78 NSDUH::2023::YUSUITHK NSDUH NSDUH_YOUTH::2023 suicide_ideation Note: Beginning in 2022, questions YSUI01, YCOV9, YSUI02, YCOV10, YSUI03, YCOV11, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK
79 NSDUH::2023::YUSUIPLN NSDUH NSDUH_YOUTH::2023 suicide_plan During the past 12 months, did you make any plans to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN
80 NSDUH::2024::YUSUITHK NSDUH NSDUH_YOUTH::2024 suicide_ideation Note: Beginning in 2022, questions YSUI01, YSUI02, YSUI03, YSUI04, and YSUI05 were moved from the youth mental health service utilization section to the youth experiences section. The next few questions are about thoughts of suicide. You can answer “I’m not sure” or “I don’t want to answer” to any question. At any time in the past 12 months, that is from [DATEFILL] up to and including today, did you seriously think about trying to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK
81 NSDUH::2024::YUSUIPLN NSDUH NSDUH_YOUTH::2024 suicide_plan During the past 12 months, did you make any plans to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN
82 NSDUH::2021::YUSUICTRY NSDUH NSDUH_YOUTH::2021 suicide_attempt During the past 12 months, did you try to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03
83 NSDUH::2022::YUSUICTRY NSDUH NSDUH_YOUTH::2022 suicide_attempt During the past 12 months, did you try to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03
84 NSDUH::2023::YUSUICTRY NSDUH NSDUH_YOUTH::2023 suicide_attempt During the past 12 months, did you try to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03
85 NSDUH::2024::YUSUICTRY NSDUH NSDUH_YOUTH::2024 suicide_attempt During the past 12 months, did you try to kill yourself? 9 adolescents aged 12-17; final eligibility and skip logic require annual guide sign-off English source metadata; administered-language/accommodation coverage not established https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03
+397 -397
View File
@@ -1,397 +1,397 @@
item_version_id,raw_code,raw_label,canonical_code,missing_type,is_observed_response,derivation_rule,source_file,source_url,review_status
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,provisional
YRBS::1991::Q19,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q19,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q19,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q20,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q20,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q20,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q21,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q21,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q21,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q21,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q21,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1991::Q21,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,provisional
YRBS::1993::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1993::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q22,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q22,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q22,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q23,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q23,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q23,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q24,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q24,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q24,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q24,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q24,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1995::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q22,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q22,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q22,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q23,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q23,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q23,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q24,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q24,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q24,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q24,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q24,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1997::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q23,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q23,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q23,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q25,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q25,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q25,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q25,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q25,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::1999::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2001::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2003::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2005::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2007::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2009::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q26,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q26,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q27,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q27,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q27,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q27,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q27,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2011::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q28,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q28,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q29,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q29,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q29,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q29,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q29,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2013::Q29,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q28,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q28,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q29,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q29,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q29,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q29,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q29,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2015::Q29,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,provisional
YRBS::2017::Q26,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q26,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q28,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q28,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q28,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q28,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q28,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2017::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,provisional
YRBS::2019::Q26,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q26,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q28,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q28,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q28,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q28,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q28,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2019::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q26,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q26,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q28,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q28,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q28,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q28,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q28,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2021::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,provisional
YRBS::2023::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q28,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q28,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q29,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q29,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q29,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q29,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q29,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
YRBS::2023::Q29,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,provisional
NSDUH::2021::YUSUITHK,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUITHK,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUITHK,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUITHK,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUITHK,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUITHK,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUITHK,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUITHK,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUITHK,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2021::YUSUIPLN,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUITHK,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2022::YUSUIPLN,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUITHK,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2023::YUSUIPLN,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUITHK,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2024::YUSUIPLN,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,provisional
NSDUH::2021::YUSUICTRY,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2021::YUSUICTRY,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2021::YUSUICTRY,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2021::YUSUICTRY,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2021::YUSUICTRY,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2021::YUSUICTRY,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2021::YUSUICTRY,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2021::YUSUICTRY,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2021::YUSUICTRY,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,provisional
NSDUH::2022::YUSUICTRY,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2022::YUSUICTRY,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2022::YUSUICTRY,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2022::YUSUICTRY,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2022::YUSUICTRY,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2022::YUSUICTRY,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2022::YUSUICTRY,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2022::YUSUICTRY,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2022::YUSUICTRY,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,provisional
NSDUH::2023::YUSUICTRY,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2023::YUSUICTRY,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2023::YUSUICTRY,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2023::YUSUICTRY,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2023::YUSUICTRY,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2023::YUSUICTRY,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2023::YUSUICTRY,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2023::YUSUICTRY,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2023::YUSUICTRY,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,provisional
NSDUH::2024::YUSUICTRY,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
NSDUH::2024::YUSUICTRY,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
NSDUH::2024::YUSUICTRY,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
NSDUH::2024::YUSUICTRY,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
NSDUH::2024::YUSUICTRY,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
NSDUH::2024::YUSUICTRY,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
NSDUH::2024::YUSUICTRY,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
NSDUH::2024::YUSUICTRY,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
NSDUH::2024::YUSUICTRY,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,provisional
item_version_id,raw_code,raw_label,canonical_code,missing_type,is_observed_response,derivation_rule,source_file,source_url,page_or_section,review_status
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q32,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q32,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q32,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q33,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q33,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q33,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,provisional
GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf,,Q34,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q33,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q33,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q33,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q34,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q34,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q34,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,provisional
GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf,,Q35,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q34,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q34,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q34,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q35,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q35,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q35,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,provisional
GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx,,Q36,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q28,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q28,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q28,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q29,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q29,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q29,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,provisional
GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx,,Q30,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q36,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q36,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q36,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q37,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q37,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q37,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,provisional
GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx,,Q38,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992,Master_Columns plus component-specific questionnaire/codebook references in component audit,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q29,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q29,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q29,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q30,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q30,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q30,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,provisional
GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx,,Q31,provisional
YRBS::1991::Q19,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q19,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q19,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q20,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q20,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q20,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q21,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q21,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q21,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q21,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q21,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1991::Q21,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf,,page 5; data guide page 9,provisional
YRBS::1993::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1993::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf,,page 6; data guide page 11,provisional
YRBS::1995::Q22,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q22,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q22,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q23,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q23,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q23,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q24,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q24,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q24,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q24,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q24,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1995::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q22,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q22,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q22,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q23,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q23,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q23,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q24,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q24,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q24,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q24,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q24,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1997::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf,,page 6; data guide pages 11-12,provisional
YRBS::1999::Q23,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q23,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q23,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q25,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q25,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q25,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q25,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q25,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::1999::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf,,page 7; data guide page 7,provisional
YRBS::2001::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2001::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf,,page 7; data guide pages 8-9,provisional
YRBS::2003::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2003::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf,,page 7; data guide pages 9-10,provisional
YRBS::2005::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2005::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf,,page 7; data guide pages 16-17,provisional
YRBS::2007::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2007::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf,,page 7; data guide page 20,provisional
YRBS::2009::Q24,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q24,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q24,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q26,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q26,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q26,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q26,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q26,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2009::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf,,page 7; data guide page 22,provisional
YRBS::2011::Q25,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q25,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q25,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q26,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q26,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q27,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q27,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q27,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q27,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q27,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2011::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf,,pages 7-8; data guide page 20,provisional
YRBS::2013::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q28,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q28,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q29,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q29,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q29,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q29,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q29,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2013::Q29,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2015::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q28,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q28,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q29,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q29,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q29,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q29,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q29,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2015::Q29,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf,,pages 7-8; data guide page 29,provisional
YRBS::2017::Q26,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q26,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q28,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q28,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q28,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q28,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q28,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2017::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf,,page 8; data guide page 29,provisional
YRBS::2019::Q26,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q26,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q28,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q28,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q28,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q28,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q28,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2019::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf,,page 8; data guide pages 27-28,provisional
YRBS::2021::Q26,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q26,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q26,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q28,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q28,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q28,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q28,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q28,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2021::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf,,page 8; data guide page 28,provisional
YRBS::2023::Q27,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q27,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q27,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q28,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q28,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q28,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q29,1,0 times,zero,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q29,2,1 time,one,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q29,3,2 or 3 times,two_or_three,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q29,4,4 or 5 times,four_or_five,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q29,5,6 or more times,six_or_more,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
YRBS::2023::Q29,<missing>,blank/null/sysmiss; source does not distinguish reason,,unknown,false,retain as unknown missing; never recode as No/zero without an explicit official rule,Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf,,page 9; data guide page 29,provisional
NSDUH::2021::YUSUITHK,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUITHK,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUITHK,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUITHK,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUITHK,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUITHK,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUITHK,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUITHK,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUITHK,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2021::YUSUIPLN,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUIPLN,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUIPLN,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUIPLN,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUIPLN,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUIPLN,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUIPLN,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUIPLN,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUIPLN,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUITHK,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUITHK,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUITHK,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUITHK,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUITHK,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUITHK,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUITHK,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUITHK,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUITHK,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2022::YUSUIPLN,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUIPLN,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUIPLN,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUIPLN,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUIPLN,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUIPLN,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUIPLN,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUIPLN,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2022::YUSUIPLN,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUITHK,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUITHK,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUITHK,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUITHK,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUITHK,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUITHK,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUITHK,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUITHK,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUITHK,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2023::YUSUIPLN,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUIPLN,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUIPLN,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUIPLN,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUIPLN,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUIPLN,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUIPLN,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUIPLN,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2023::YUSUIPLN,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUITHK,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUITHK,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUITHK,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUITHK,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUITHK,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUITHK,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUITHK,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUITHK,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUITHK,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUITHK,provisional
NSDUH::2024::YUSUIPLN,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUIPLN,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUIPLN,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUIPLN,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUIPLN,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUIPLN,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUIPLN,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUIPLN,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2024::YUSUIPLN,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv,https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json,YUSUIPLN,provisional
NSDUH::2021::YUSUICTRY,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2021::YUSUICTRY,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2021::YUSUICTRY,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2021::YUSUICTRY,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2021::YUSUICTRY,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2021::YUSUICTRY,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2021::YUSUICTRY,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2021::YUSUICTRY,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2021::YUSUICTRY,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2022::YUSUICTRY,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2023::YUSUICTRY,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,1,Yes,yes,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,2,No,no,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,3,I'm not sure,uncertain,,true,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,4,I don't want to answer,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,85,BAD DATA Logically assigned,,data_error,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,94,DON'T KNOW,,dont_know,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,97,REFUSED,,refused,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,98,BLANK (NO ANSWER),,ordinary_missing,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
NSDUH::2024::YUSUICTRY,99,LEGITIMATE SKIP,,legitimate_skip,false,direct recode; no imputation and no silent conversion of nonresponse to a negative response,,https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf,YSUI03,provisional
1 item_version_id raw_code raw_label canonical_code missing_type is_observed_response derivation_rule source_file source_url page_or_section review_status
2 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q32 provisional
3 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q32 provisional
4 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_considersui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q32 provisional
5 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q33 provisional
6 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q33 provisional
7 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_plansui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q33 provisional
8 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34 provisional
9 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34 provisional
10 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34 provisional
11 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34 provisional
12 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34 provisional
13 GSHS::2023_MAR_GSHS_v01::mar_fez2023::raw_mh_attemptsui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Morocco 2023/Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf Q34 provisional
14 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q33 provisional
15 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q33 provisional
16 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_considersui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q33 provisional
17 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q34 provisional
18 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q34 provisional
19 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_plansui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q34 provisional
20 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35 provisional
21 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35 provisional
22 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35 provisional
23 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35 provisional
24 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35 provisional
25 GSHS::GHA_2022_GSHS_v01::gha_sek_tak2022::raw_mh_attemptsui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Ghana 2022/Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf Q35 provisional
26 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q34 provisional
27 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q34 provisional
28 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_considersui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q34 provisional
29 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q35 provisional
30 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q35 provisional
31 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_plansui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q35 provisional
32 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36 provisional
33 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36 provisional
34 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36 provisional
35 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36 provisional
36 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36 provisional
37 GSHS::IND_2022_GSHS_v01::ind_jaipur_2022::raw_mh_attemptsui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/India 2022/Jaipur-2022_GSHS_Questionnaire-Final.docx Q36 provisional
38 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q28 provisional
39 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q28 provisional
40 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_considersui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q28 provisional
41 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q29 provisional
42 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q29 provisional
43 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_plansui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q29 provisional
44 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30 provisional
45 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30 provisional
46 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30 provisional
47 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30 provisional
48 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30 provisional
49 GSHS::JAM_2023_GSHS_v01::jam_st_cath_2023::raw_mh_attemptsui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Jamaica 2023/FINAL_St. Catherine-2023-GSHS-Questionnaire.docx Q30 provisional
50 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q36 provisional
51 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q36 provisional
52 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_considersui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q36 provisional
53 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q37 provisional
54 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q37 provisional
55 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_plansui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q37 provisional
56 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38 provisional
57 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38 provisional
58 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38 provisional
59 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38 provisional
60 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38 provisional
61 GSHS::MNG_2023_GSHS_v01::mng2023::raw_mh_attemptsui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Mongolia 2023/Mongolia-GSHS-Questionnaire-ENGLISH.docx Q38 provisional
62 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
63 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
64 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_considersui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
65 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
66 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
67 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_plansui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
68 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
69 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
70 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
71 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
72 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
73 GSHS::SLB_2023_GSHS_v01::slb_2023::raw_mh_attemptsui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/GSHS_数据字典.xlsx https://extranet.who.int/ncdsmicrodata/index.php/catalog/992 Master_Columns plus component-specific questionnaire/codebook references in component audit provisional
74 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q29 provisional
75 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q29 provisional
76 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_considersui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q29 provisional
77 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q30 provisional
78 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q30 provisional
79 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_plansui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q30 provisional
80 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31 provisional
81 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31 provisional
82 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31 provisional
83 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31 provisional
84 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31 provisional
85 GSHS::WLF_2023_GSHS_v01::wlf_2023::raw_mh_attemptsui <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/GSHS-全球学生健康调查数据/GSHS/Questionnaire/GSHS Per Country/Wallis and Futuna 2023/Wallis and Futuna - GSHS Questionnaire - Final - French.docx Q31 provisional
86 YRBS::1991::Q19 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
87 YRBS::1991::Q19 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
88 YRBS::1991::Q19 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
89 YRBS::1991::Q20 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
90 YRBS::1991::Q20 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
91 YRBS::1991::Q20 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
92 YRBS::1991::Q21 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
93 YRBS::1991::Q21 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
94 YRBS::1991::Q21 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
95 YRBS::1991::Q21 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
96 YRBS::1991::Q21 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
97 YRBS::1991::Q21 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1991_hs_questionnaire.pdf page 5; data guide page 9 provisional
98 YRBS::1993::Q24 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
99 YRBS::1993::Q24 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
100 YRBS::1993::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
101 YRBS::1993::Q25 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
102 YRBS::1993::Q25 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
103 YRBS::1993::Q25 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
104 YRBS::1993::Q26 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
105 YRBS::1993::Q26 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
106 YRBS::1993::Q26 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
107 YRBS::1993::Q26 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
108 YRBS::1993::Q26 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
109 YRBS::1993::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1993_xxh_questionnaire.pdf page 6; data guide page 11 provisional
110 YRBS::1995::Q22 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
111 YRBS::1995::Q22 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
112 YRBS::1995::Q22 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
113 YRBS::1995::Q23 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
114 YRBS::1995::Q23 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
115 YRBS::1995::Q23 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
116 YRBS::1995::Q24 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
117 YRBS::1995::Q24 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
118 YRBS::1995::Q24 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
119 YRBS::1995::Q24 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
120 YRBS::1995::Q24 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
121 YRBS::1995::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1995_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
122 YRBS::1997::Q22 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
123 YRBS::1997::Q22 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
124 YRBS::1997::Q22 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
125 YRBS::1997::Q23 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
126 YRBS::1997::Q23 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
127 YRBS::1997::Q23 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
128 YRBS::1997::Q24 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
129 YRBS::1997::Q24 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
130 YRBS::1997::Q24 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
131 YRBS::1997::Q24 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
132 YRBS::1997::Q24 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
133 YRBS::1997::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1997_xxh_questionnaire.pdf page 6; data guide pages 11-12 provisional
134 YRBS::1999::Q23 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
135 YRBS::1999::Q23 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
136 YRBS::1999::Q23 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
137 YRBS::1999::Q24 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
138 YRBS::1999::Q24 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
139 YRBS::1999::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
140 YRBS::1999::Q25 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
141 YRBS::1999::Q25 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
142 YRBS::1999::Q25 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
143 YRBS::1999::Q25 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
144 YRBS::1999::Q25 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
145 YRBS::1999::Q25 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/1999_xxh_questionnaire.pdf page 7; data guide page 7 provisional
146 YRBS::2001::Q24 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
147 YRBS::2001::Q24 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
148 YRBS::2001::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
149 YRBS::2001::Q25 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
150 YRBS::2001::Q25 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
151 YRBS::2001::Q25 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
152 YRBS::2001::Q26 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
153 YRBS::2001::Q26 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
154 YRBS::2001::Q26 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
155 YRBS::2001::Q26 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
156 YRBS::2001::Q26 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
157 YRBS::2001::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2001_xxh_questionnaire.pdf page 7; data guide pages 8-9 provisional
158 YRBS::2003::Q24 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
159 YRBS::2003::Q24 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
160 YRBS::2003::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
161 YRBS::2003::Q25 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
162 YRBS::2003::Q25 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
163 YRBS::2003::Q25 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
164 YRBS::2003::Q26 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
165 YRBS::2003::Q26 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
166 YRBS::2003::Q26 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
167 YRBS::2003::Q26 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
168 YRBS::2003::Q26 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
169 YRBS::2003::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2003_xxh_questionnaire.pdf page 7; data guide pages 9-10 provisional
170 YRBS::2005::Q24 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
171 YRBS::2005::Q24 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
172 YRBS::2005::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
173 YRBS::2005::Q25 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
174 YRBS::2005::Q25 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
175 YRBS::2005::Q25 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
176 YRBS::2005::Q26 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
177 YRBS::2005::Q26 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
178 YRBS::2005::Q26 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
179 YRBS::2005::Q26 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
180 YRBS::2005::Q26 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
181 YRBS::2005::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2005_xxh_questionnaire.pdf page 7; data guide pages 16-17 provisional
182 YRBS::2007::Q24 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
183 YRBS::2007::Q24 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
184 YRBS::2007::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
185 YRBS::2007::Q25 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
186 YRBS::2007::Q25 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
187 YRBS::2007::Q25 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
188 YRBS::2007::Q26 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
189 YRBS::2007::Q26 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
190 YRBS::2007::Q26 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
191 YRBS::2007::Q26 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
192 YRBS::2007::Q26 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
193 YRBS::2007::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2007_xxh_questionnaire.pdf page 7; data guide page 20 provisional
194 YRBS::2009::Q24 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
195 YRBS::2009::Q24 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
196 YRBS::2009::Q24 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
197 YRBS::2009::Q25 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
198 YRBS::2009::Q25 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
199 YRBS::2009::Q25 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
200 YRBS::2009::Q26 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
201 YRBS::2009::Q26 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
202 YRBS::2009::Q26 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
203 YRBS::2009::Q26 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
204 YRBS::2009::Q26 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
205 YRBS::2009::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2009_xxh_questionnaire.pdf page 7; data guide page 22 provisional
206 YRBS::2011::Q25 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
207 YRBS::2011::Q25 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
208 YRBS::2011::Q25 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
209 YRBS::2011::Q26 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
210 YRBS::2011::Q26 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
211 YRBS::2011::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
212 YRBS::2011::Q27 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
213 YRBS::2011::Q27 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
214 YRBS::2011::Q27 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
215 YRBS::2011::Q27 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
216 YRBS::2011::Q27 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
217 YRBS::2011::Q27 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2011_xxh_questionnaire.pdf pages 7-8; data guide page 20 provisional
218 YRBS::2013::Q27 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
219 YRBS::2013::Q27 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
220 YRBS::2013::Q27 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
221 YRBS::2013::Q28 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
222 YRBS::2013::Q28 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
223 YRBS::2013::Q28 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
224 YRBS::2013::Q29 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
225 YRBS::2013::Q29 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
226 YRBS::2013::Q29 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
227 YRBS::2013::Q29 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
228 YRBS::2013::Q29 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
229 YRBS::2013::Q29 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2013_xxh_questionnaire.pdf page 8; data guide page 28 provisional
230 YRBS::2015::Q27 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
231 YRBS::2015::Q27 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
232 YRBS::2015::Q27 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
233 YRBS::2015::Q28 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
234 YRBS::2015::Q28 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
235 YRBS::2015::Q28 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
236 YRBS::2015::Q29 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
237 YRBS::2015::Q29 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
238 YRBS::2015::Q29 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
239 YRBS::2015::Q29 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
240 YRBS::2015::Q29 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
241 YRBS::2015::Q29 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2015_xxh_questionnaire.pdf pages 7-8; data guide page 29 provisional
242 YRBS::2017::Q26 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
243 YRBS::2017::Q26 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
244 YRBS::2017::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
245 YRBS::2017::Q27 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
246 YRBS::2017::Q27 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
247 YRBS::2017::Q27 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
248 YRBS::2017::Q28 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
249 YRBS::2017::Q28 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
250 YRBS::2017::Q28 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
251 YRBS::2017::Q28 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
252 YRBS::2017::Q28 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
253 YRBS::2017::Q28 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2017_yrbs_national_hs_questionnaire.pdf page 8; data guide page 29 provisional
254 YRBS::2019::Q26 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
255 YRBS::2019::Q26 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
256 YRBS::2019::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
257 YRBS::2019::Q27 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
258 YRBS::2019::Q27 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
259 YRBS::2019::Q27 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
260 YRBS::2019::Q28 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
261 YRBS::2019::Q28 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
262 YRBS::2019::Q28 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
263 YRBS::2019::Q28 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
264 YRBS::2019::Q28 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
265 YRBS::2019::Q28 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2019_YRBS-National-HS-Questionnaire.pdf page 8; data guide pages 27-28 provisional
266 YRBS::2021::Q26 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
267 YRBS::2021::Q26 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
268 YRBS::2021::Q26 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
269 YRBS::2021::Q27 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
270 YRBS::2021::Q27 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
271 YRBS::2021::Q27 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
272 YRBS::2021::Q28 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
273 YRBS::2021::Q28 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
274 YRBS::2021::Q28 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
275 YRBS::2021::Q28 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
276 YRBS::2021::Q28 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
277 YRBS::2021::Q28 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2021-YRBS-National-HS-Questionnaire.pdf page 8; data guide page 28 provisional
278 YRBS::2023::Q27 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
279 YRBS::2023::Q27 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
280 YRBS::2023::Q27 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
281 YRBS::2023::Q28 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
282 YRBS::2023::Q28 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
283 YRBS::2023::Q28 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
284 YRBS::2023::Q29 1 0 times zero true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
285 YRBS::2023::Q29 2 1 time one true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
286 YRBS::2023::Q29 3 2 or 3 times two_or_three true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
287 YRBS::2023::Q29 4 4 or 5 times four_or_five true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
288 YRBS::2023::Q29 5 6 or more times six_or_more true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
289 YRBS::2023::Q29 <missing> blank/null/sysmiss; source does not distinguish reason unknown false retain as unknown missing; never recode as No/zero without an explicit official rule Dataset/YRBS_National_1991_2023/documentation/Questionnaire/2023_YRBS_National_HS_Questionnaire.pdf page 9; data guide page 29 provisional
290 NSDUH::2021::YUSUITHK 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
291 NSDUH::2021::YUSUITHK 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
292 NSDUH::2021::YUSUITHK 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
293 NSDUH::2021::YUSUITHK 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
294 NSDUH::2021::YUSUITHK 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
295 NSDUH::2021::YUSUITHK 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
296 NSDUH::2021::YUSUITHK 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
297 NSDUH::2021::YUSUITHK 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
298 NSDUH::2021::YUSUITHK 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUITHK provisional
299 NSDUH::2021::YUSUIPLN 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
300 NSDUH::2021::YUSUIPLN 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
301 NSDUH::2021::YUSUIPLN 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
302 NSDUH::2021::YUSUIPLN 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
303 NSDUH::2021::YUSUIPLN 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
304 NSDUH::2021::YUSUIPLN 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
305 NSDUH::2021::YUSUIPLN 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
306 NSDUH::2021::YUSUIPLN 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
307 NSDUH::2021::YUSUIPLN 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2021-DS0001/?format=json YUSUIPLN provisional
308 NSDUH::2022::YUSUITHK 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
309 NSDUH::2022::YUSUITHK 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
310 NSDUH::2022::YUSUITHK 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
311 NSDUH::2022::YUSUITHK 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
312 NSDUH::2022::YUSUITHK 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
313 NSDUH::2022::YUSUITHK 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
314 NSDUH::2022::YUSUITHK 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
315 NSDUH::2022::YUSUITHK 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
316 NSDUH::2022::YUSUITHK 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUITHK provisional
317 NSDUH::2022::YUSUIPLN 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
318 NSDUH::2022::YUSUIPLN 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
319 NSDUH::2022::YUSUIPLN 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
320 NSDUH::2022::YUSUIPLN 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
321 NSDUH::2022::YUSUIPLN 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
322 NSDUH::2022::YUSUIPLN 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
323 NSDUH::2022::YUSUIPLN 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
324 NSDUH::2022::YUSUIPLN 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
325 NSDUH::2022::YUSUIPLN 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2022-DS0001/?format=json YUSUIPLN provisional
326 NSDUH::2023::YUSUITHK 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
327 NSDUH::2023::YUSUITHK 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
328 NSDUH::2023::YUSUITHK 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
329 NSDUH::2023::YUSUITHK 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
330 NSDUH::2023::YUSUITHK 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
331 NSDUH::2023::YUSUITHK 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
332 NSDUH::2023::YUSUITHK 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
333 NSDUH::2023::YUSUITHK 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
334 NSDUH::2023::YUSUITHK 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUITHK provisional
335 NSDUH::2023::YUSUIPLN 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
336 NSDUH::2023::YUSUIPLN 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
337 NSDUH::2023::YUSUIPLN 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
338 NSDUH::2023::YUSUIPLN 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
339 NSDUH::2023::YUSUIPLN 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
340 NSDUH::2023::YUSUIPLN 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
341 NSDUH::2023::YUSUIPLN 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
342 NSDUH::2023::YUSUIPLN 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
343 NSDUH::2023::YUSUIPLN 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2023-DS0001/?format=json YUSUIPLN provisional
344 NSDUH::2024::YUSUITHK 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
345 NSDUH::2024::YUSUITHK 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
346 NSDUH::2024::YUSUITHK 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
347 NSDUH::2024::YUSUITHK 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
348 NSDUH::2024::YUSUITHK 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
349 NSDUH::2024::YUSUITHK 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
350 NSDUH::2024::YUSUITHK 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
351 NSDUH::2024::YUSUITHK 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
352 NSDUH::2024::YUSUITHK 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUITHK provisional
353 NSDUH::2024::YUSUIPLN 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
354 NSDUH::2024::YUSUIPLN 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
355 NSDUH::2024::YUSUIPLN 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
356 NSDUH::2024::YUSUIPLN 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
357 NSDUH::2024::YUSUIPLN 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
358 NSDUH::2024::YUSUIPLN 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
359 NSDUH::2024::YUSUIPLN 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
360 NSDUH::2024::YUSUIPLN 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
361 NSDUH::2024::YUSUIPLN 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response Dataset/可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_complete_variable_dictionary.csv https://datatools.samhsa.gov/api/surveys/NSDUH-2024-DS0001/?format=json YUSUIPLN provisional
362 NSDUH::2021::YUSUICTRY 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
363 NSDUH::2021::YUSUICTRY 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
364 NSDUH::2021::YUSUICTRY 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
365 NSDUH::2021::YUSUICTRY 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
366 NSDUH::2021::YUSUICTRY 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
367 NSDUH::2021::YUSUICTRY 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
368 NSDUH::2021::YUSUICTRY 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
369 NSDUH::2021::YUSUICTRY 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
370 NSDUH::2021::YUSUICTRY 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/2021-09/NSDUHRDCCodebook2021.pdf YSUI03 provisional
371 NSDUH::2022::YUSUICTRY 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
372 NSDUH::2022::YUSUICTRY 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
373 NSDUH::2022::YUSUICTRY 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
374 NSDUH::2022::YUSUICTRY 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
375 NSDUH::2022::YUSUICTRY 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
376 NSDUH::2022::YUSUICTRY 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
377 NSDUH::2022::YUSUICTRY 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
378 NSDUH::2022::YUSUICTRY 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
379 NSDUH::2022::YUSUICTRY 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/NSDUH-RDC/NSDUHRDCCodebook2022.pdf YSUI03 provisional
380 NSDUH::2023::YUSUICTRY 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
381 NSDUH::2023::YUSUICTRY 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
382 NSDUH::2023::YUSUICTRY 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
383 NSDUH::2023::YUSUICTRY 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
384 NSDUH::2023::YUSUICTRY 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
385 NSDUH::2023::YUSUICTRY 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
386 NSDUH::2023::YUSUICTRY 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
387 NSDUH::2023::YUSUICTRY 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
388 NSDUH::2023::YUSUICTRY 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/system/files/media-puf-file/2023-nsduh-rdc-codebook.pdf YSUI03 provisional
389 NSDUH::2024::YUSUICTRY 1 Yes yes true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
390 NSDUH::2024::YUSUICTRY 2 No no true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
391 NSDUH::2024::YUSUICTRY 3 I'm not sure uncertain true direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
392 NSDUH::2024::YUSUICTRY 4 I don't want to answer refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
393 NSDUH::2024::YUSUICTRY 85 BAD DATA Logically assigned data_error false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
394 NSDUH::2024::YUSUICTRY 94 DON'T KNOW dont_know false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
395 NSDUH::2024::YUSUICTRY 97 REFUSED refused false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
396 NSDUH::2024::YUSUICTRY 98 BLANK (NO ANSWER) ordinary_missing false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
397 NSDUH::2024::YUSUICTRY 99 LEGITIMATE SKIP legitimate_skip false direct recode; no imputation and no silent conversion of nonresponse to a negative response https://www.samhsa.gov/data/sites/default/files/reports/rpt44494/2024-nsduh-mrb-eng-web-specs.pdf YSUI03 provisional
+29 -29
View File
@@ -1,29 +1,29 @@
survey_id,component_id,survey,country,year,population,weight_field,psu_field,stratum_field,variance_method,namespace_rule,design_source,design_status,notes
GSHS::2023_MAR_GSHS_v01,2023_MAR_GSHS_v01::mar_fez2023,GSHS,Morocco,2023,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/982; WHO GSHS methodology and data catalog,source_verified_fields,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::GHA_2022_GSHS_v01,GHA_2022_GSHS_v01::gha_sek_tak2022,GSHS,Ghana,2022,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/981; WHO GSHS methodology and data catalog,source_verified_fields,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::IND_2022_GSHS_v01,IND_2022_GSHS_v01::ind_jaipur_2022,GSHS,India,2022,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/984; WHO GSHS methodology and data catalog,source_verified_fields,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::JAM_2023_GSHS_v01,JAM_2023_GSHS_v01::jam_st_cath_2023,GSHS,Jamaica,2023,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/983; WHO GSHS methodology and data catalog,source_verified_fields,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::MNG_2023_GSHS_v01,MNG_2023_GSHS_v01::mng2023,GSHS,Mongolia,2023,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/990; WHO GSHS methodology and data catalog,source_verified_fields,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::SLB_2023_GSHS_v01,SLB_2023_GSHS_v01::slb_2023,GSHS,Solomon Islands,2023,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992; WHO GSHS methodology and data catalog,source_verified_fields,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::WLF_2023_GSHS_v01,WLF_2023_GSHS_v01::wlf_2023,GSHS,Wallis and Futuna,2023,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/994; WHO GSHS methodology and data catalog,source_verified_fields,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
YRBS::1991,YRBS_NATIONAL::1991,YRBS,United States,1991,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1991_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::1993,YRBS_NATIONAL::1993,YRBS,United States,1993,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1993_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::1995,YRBS_NATIONAL::1995,YRBS,United States,1995,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1995_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::1997,YRBS_NATIONAL::1997,YRBS,United States,1997,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1997_National_User_Guide.pdf,source_verified_one_missing_record,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::1999,YRBS_NATIONAL::1999,YRBS,United States,1999,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1999_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2001,YRBS_NATIONAL::2001,YRBS,United States,2001,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2001_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2003,YRBS_NATIONAL::2003,YRBS,United States,2003,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2003_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2005,YRBS_NATIONAL::2005,YRBS,United States,2005,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2005_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2007,YRBS_NATIONAL::2007,YRBS,United States,2007,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2007_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2009,YRBS_NATIONAL::2009,YRBS,United States,2009,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2009_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2011,YRBS_NATIONAL::2011,YRBS,United States,2011,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2011_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2013,YRBS_NATIONAL::2013,YRBS,United States,2013,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2013_National_User_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2015,YRBS_NATIONAL::2015,YRBS,United States,2015,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2015_yrbs-data-users_guide_smy_combined.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2017,YRBS_NATIONAL::2017,YRBS,United States,2017,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2017_YRBS_Data_Users_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2019,YRBS_NATIONAL::2019,YRBS,United States,2019,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2019_National_YRBS_Data_Users_Guide.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2021,YRBS_NATIONAL::2021,YRBS,United States,2021,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2021_YRBS_Data_Users_Guide_508.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2023,YRBS_NATIONAL::2023,YRBS,United States,2023,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2023_National_YRBS_Data_Users_Guide508.pdf,source_verified,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
NSDUH::2021,NSDUH_YOUTH::2021,NSDUH,United States,2021,adolescents aged 12-17,ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages,VEREP,VESTR_C,Taylor series linearization; 50 df for 2014 onward national PUF estimates,retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation,"Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",source_verified,"Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs."
NSDUH::2022,NSDUH_YOUTH::2022,NSDUH,United States,2022,adolescents aged 12-17,ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages,VEREP,VESTR_C,Taylor series linearization; 50 df for 2014 onward national PUF estimates,retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation,"Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",source_verified,"Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs."
NSDUH::2023,NSDUH_YOUTH::2023,NSDUH,United States,2023,adolescents aged 12-17,ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages,VEREP,VESTR_C,Taylor series linearization; 50 df for 2014 onward national PUF estimates,retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation,"Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",source_verified,"Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs."
NSDUH::2024,NSDUH_YOUTH::2024,NSDUH,United States,2024,adolescents aged 12-17,ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages,VEREP,VESTR_C,Taylor series linearization; 50 df for 2014 onward national PUF estimates,retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation,"Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",source_verified,"Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs."
survey_id,component_id,survey,country,year,population,weight_field,psu_field,stratum_field,variance_method,namespace_rule,design_source,design_status,review_status,notes
GSHS::2023_MAR_GSHS_v01,2023_MAR_GSHS_v01::mar_fez2023,GSHS,Morocco,2023,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/982; WHO GSHS methodology and data catalog,source_verified_fields,provisional,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::GHA_2022_GSHS_v01,GHA_2022_GSHS_v01::gha_sek_tak2022,GSHS,Ghana,2022,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/981; WHO GSHS methodology and data catalog,source_verified_fields,provisional,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::IND_2022_GSHS_v01,IND_2022_GSHS_v01::ind_jaipur_2022,GSHS,India,2022,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/984; WHO GSHS methodology and data catalog,source_verified_fields,provisional,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::JAM_2023_GSHS_v01,JAM_2023_GSHS_v01::jam_st_cath_2023,GSHS,Jamaica,2023,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/983; WHO GSHS methodology and data catalog,source_verified_fields,provisional,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::MNG_2023_GSHS_v01,MNG_2023_GSHS_v01::mng2023,GSHS,Mongolia,2023,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/990; WHO GSHS methodology and data catalog,source_verified_fields,provisional,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::SLB_2023_GSHS_v01,SLB_2023_GSHS_v01::slb_2023,GSHS,Solomon Islands,2023,school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/992; WHO GSHS methodology and data catalog,source_verified_fields,provisional,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
GSHS::WLF_2023_GSHS_v01,WLF_2023_GSHS_v01::wlf_2023,GSHS,Wallis and Futuna,2023,school-attending students; exact sampled ages/grades remain pending component source review,sample_weight,sampling_psu,sampling_stratum,"complex-survey design using weight, stratum, and PSU; Taylor linearization planned",prefix PSU and stratum with component_id before pooling,https://extranet.who.int/ncdsmicrodata/index.php/catalog/994; WHO GSHS methodology and data catalog,source_verified_fields,provisional,"For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling."
YRBS::1991,YRBS_NATIONAL::1991,YRBS,United States,1991,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1991_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::1993,YRBS_NATIONAL::1993,YRBS,United States,1993,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1993_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::1995,YRBS_NATIONAL::1995,YRBS,United States,1995,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1995_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::1997,YRBS_NATIONAL::1997,YRBS,United States,1997,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1997_National_User_Guide.pdf,source_verified_one_missing_record,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::1999,YRBS_NATIONAL::1999,YRBS,United States,1999,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1999_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2001,YRBS_NATIONAL::2001,YRBS,United States,2001,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2001_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2003,YRBS_NATIONAL::2003,YRBS,United States,2003,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2003_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2005,YRBS_NATIONAL::2005,YRBS,United States,2005,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2005_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2007,YRBS_NATIONAL::2007,YRBS,United States,2007,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2007_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2009,YRBS_NATIONAL::2009,YRBS,United States,2009,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2009_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2011,YRBS_NATIONAL::2011,YRBS,United States,2011,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2011_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2013,YRBS_NATIONAL::2013,YRBS,United States,2013,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2013_National_User_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2015,YRBS_NATIONAL::2015,YRBS,United States,2015,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2015_yrbs-data-users_guide_smy_combined.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2017,YRBS_NATIONAL::2017,YRBS,United States,2017,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2017_YRBS_Data_Users_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2019,YRBS_NATIONAL::2019,YRBS,United States,2019,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2019_National_YRBS_Data_Users_Guide.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2021,YRBS_NATIONAL::2021,YRBS,United States,2021,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2021_YRBS_Data_Users_Guide_508.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
YRBS::2023,YRBS_NATIONAL::2023,YRBS,United States,2023,students in grades 9-12 attending public and private schools in the United States,weight,psu,stratum,complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported,prefix PSU and stratum with survey year before pooling,Dataset/YRBS_National_1991_2023/documentation/UserGuide/2023_National_YRBS_Data_Users_Guide508.pdf,source_verified,provisional,"Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling."
NSDUH::2021,NSDUH_YOUTH::2021,NSDUH,United States,2021,adolescents aged 12-17,ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages,VEREP,VESTR_C,Taylor series linearization; 50 df for 2014 onward national PUF estimates,retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation,"Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",source_verified,provisional,"Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs."
NSDUH::2022,NSDUH_YOUTH::2022,NSDUH,United States,2022,adolescents aged 12-17,ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages,VEREP,VESTR_C,Taylor series linearization; 50 df for 2014 onward national PUF estimates,retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation,"Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",source_verified,provisional,"Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs."
NSDUH::2023,NSDUH_YOUTH::2023,NSDUH,United States,2023,adolescents aged 12-17,ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages,VEREP,VESTR_C,Taylor series linearization; 50 df for 2014 onward national PUF estimates,retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation,"Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",source_verified,provisional,"Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs."
NSDUH::2024,NSDUH_YOUTH::2024,NSDUH,United States,2024,adolescents aged 12-17,ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages,VEREP,VESTR_C,Taylor series linearization; 50 df for 2014 onward national PUF estimates,retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation,"Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata",source_verified,provisional,"Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs."
1 survey_id component_id survey country year population weight_field psu_field stratum_field variance_method namespace_rule design_source design_status review_status notes
2 GSHS::2023_MAR_GSHS_v01 2023_MAR_GSHS_v01::mar_fez2023 GSHS Morocco 2023 school-attending students; exact sampled ages/grades remain pending component source review sample_weight sampling_psu sampling_stratum complex-survey design using weight, stratum, and PSU; Taylor linearization planned prefix PSU and stratum with component_id before pooling https://extranet.who.int/ncdsmicrodata/index.php/catalog/982; WHO GSHS methodology and data catalog source_verified_fields provisional For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling.
3 GSHS::GHA_2022_GSHS_v01 GHA_2022_GSHS_v01::gha_sek_tak2022 GSHS Ghana 2022 school-attending students; exact sampled ages/grades remain pending component source review sample_weight sampling_psu sampling_stratum complex-survey design using weight, stratum, and PSU; Taylor linearization planned prefix PSU and stratum with component_id before pooling https://extranet.who.int/ncdsmicrodata/index.php/catalog/981; WHO GSHS methodology and data catalog source_verified_fields provisional For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling.
4 GSHS::IND_2022_GSHS_v01 IND_2022_GSHS_v01::ind_jaipur_2022 GSHS India 2022 school-attending students; exact sampled ages/grades remain pending component source review sample_weight sampling_psu sampling_stratum complex-survey design using weight, stratum, and PSU; Taylor linearization planned prefix PSU and stratum with component_id before pooling https://extranet.who.int/ncdsmicrodata/index.php/catalog/984; WHO GSHS methodology and data catalog source_verified_fields provisional For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling.
5 GSHS::JAM_2023_GSHS_v01 JAM_2023_GSHS_v01::jam_st_cath_2023 GSHS Jamaica 2023 school-attending students; exact sampled ages/grades remain pending component source review sample_weight sampling_psu sampling_stratum complex-survey design using weight, stratum, and PSU; Taylor linearization planned prefix PSU and stratum with component_id before pooling https://extranet.who.int/ncdsmicrodata/index.php/catalog/983; WHO GSHS methodology and data catalog source_verified_fields provisional For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling.
6 GSHS::MNG_2023_GSHS_v01 MNG_2023_GSHS_v01::mng2023 GSHS Mongolia 2023 school-attending students; exact sampled ages/grades remain pending component source review sample_weight sampling_psu sampling_stratum complex-survey design using weight, stratum, and PSU; Taylor linearization planned prefix PSU and stratum with component_id before pooling https://extranet.who.int/ncdsmicrodata/index.php/catalog/990; WHO GSHS methodology and data catalog source_verified_fields provisional For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling.
7 GSHS::SLB_2023_GSHS_v01 SLB_2023_GSHS_v01::slb_2023 GSHS Solomon Islands 2023 school-going adolescents aged 13-17 years; Form 1-Form 6; all students in selected classes eligible sample_weight sampling_psu sampling_stratum complex-survey design using weight, stratum, and PSU; Taylor linearization planned prefix PSU and stratum with component_id before pooling https://extranet.who.int/ncdsmicrodata/index.php/catalog/992; WHO GSHS methodology and data catalog source_verified_fields provisional For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling.
8 GSHS::WLF_2023_GSHS_v01 WLF_2023_GSHS_v01::wlf_2023 GSHS Wallis and Futuna 2023 school-attending students; exact sampled ages/grades remain pending component source review sample_weight sampling_psu sampling_stratum complex-survey design using weight, stratum, and PSU; Taylor linearization planned prefix PSU and stratum with component_id before pooling https://extranet.who.int/ncdsmicrodata/index.php/catalog/994; WHO GSHS methodology and data catalog source_verified_fields provisional For all 21,533 respondents in the seven primary-outcome components, canonical weight/PSU/stratum fields are complete, positive, and numerically identical to raw_weight/raw_psu/raw_stratum. Namespace by component before pooling.
9 YRBS::1991 YRBS_NATIONAL::1991 YRBS United States 1991 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1991_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
10 YRBS::1993 YRBS_NATIONAL::1993 YRBS United States 1993 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1993_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
11 YRBS::1995 YRBS_NATIONAL::1995 YRBS United States 1995 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1995_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
12 YRBS::1997 YRBS_NATIONAL::1997 YRBS United States 1997 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1997_National_User_Guide.pdf source_verified_one_missing_record provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
13 YRBS::1999 YRBS_NATIONAL::1999 YRBS United States 1999 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_1999_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
14 YRBS::2001 YRBS_NATIONAL::2001 YRBS United States 2001 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2001_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
15 YRBS::2003 YRBS_NATIONAL::2003 YRBS United States 2003 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2003_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
16 YRBS::2005 YRBS_NATIONAL::2005 YRBS United States 2005 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2005_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
17 YRBS::2007 YRBS_NATIONAL::2007 YRBS United States 2007 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2007_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
18 YRBS::2009 YRBS_NATIONAL::2009 YRBS United States 2009 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2009_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
19 YRBS::2011 YRBS_NATIONAL::2011 YRBS United States 2011 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2011_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
20 YRBS::2013 YRBS_NATIONAL::2013 YRBS United States 2013 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/YRBS_2013_National_User_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
21 YRBS::2015 YRBS_NATIONAL::2015 YRBS United States 2015 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/2015_yrbs-data-users_guide_smy_combined.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
22 YRBS::2017 YRBS_NATIONAL::2017 YRBS United States 2017 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/2017_YRBS_Data_Users_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
23 YRBS::2019 YRBS_NATIONAL::2019 YRBS United States 2019 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/2019_National_YRBS_Data_Users_Guide.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
24 YRBS::2021 YRBS_NATIONAL::2021 YRBS United States 2021 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/2021_YRBS_Data_Users_Guide_508.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
25 YRBS::2023 YRBS_NATIONAL::2023 YRBS United States 2023 students in grades 9-12 attending public and private schools in the United States weight psu stratum complex-survey design-based variance accounting for multistage clustering; Taylor linearization supported prefix PSU and stratum with survey year before pooling Dataset/YRBS_National_1991_2023/documentation/UserGuide/2023_National_YRBS_Data_Users_Guide508.pdf source_verified provisional Annual guide identifies WEIGHT, STRATUM, and PSU. Official-layout repairs restored complete 2017/2019 fields; 2021/2023 imports are complete. One 1997 record lacks all three design fields and requires explicit exclusion/handling.
26 NSDUH::2021 NSDUH_YOUTH::2021 NSDUH United States 2021 adolescents aged 12-17 ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages VEREP VESTR_C Taylor series linearization; 50 df for 2014 onward national PUF estimates retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata source_verified provisional Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs.
27 NSDUH::2022 NSDUH_YOUTH::2022 NSDUH United States 2022 adolescents aged 12-17 ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages VEREP VESTR_C Taylor series linearization; 50 df for 2014 onward national PUF estimates retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata source_verified provisional Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs.
28 NSDUH::2023 NSDUH_YOUTH::2023 NSDUH United States 2023 adolescents aged 12-17 ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages VEREP VESTR_C Taylor series linearization; 50 df for 2014 onward national PUF estimates retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata source_verified provisional Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs.
29 NSDUH::2024 NSDUH_YOUTH::2024 NSDUH United States 2024 adolescents aged 12-17 ANALWT2_C1 (single-year); C2/C3/C4 are C1 divided by 2/3/4 for pooled annual averages VEREP VESTR_C Taylor series linearization; 50 df for 2014 onward national PUF estimates retain full-sample design and specify CATAG2=1 as a survey domain; do not physically subset before variance estimation Dataset/NSDUH/2023-nsduh-puf-data-users-guide.pdf sections 6, 8, 9, 10 and 12; official annual API metadata source_verified provisional Local C2=C1/2, C3=C1/3, and C4=C1/4 exactly for every row. Use C1 for a single year. VESTR_C and VEREP are complete; domain analysis must retain all PSUs.
+99
View File
@@ -0,0 +1,99 @@
"""Fail-closed validator for two actual human primary-outcome reviews."""
from __future__ import annotations
import argparse
import csv
import json
from datetime import date
from pathlib import Path
ALLOWED_DECISIONS = {"approve", "approve_with_correction", "reject", "needs_source"}
YES_NO = {"yes", "no"}
LANGUAGE = {"verified", "provisional_accepted", "insufficient"}
ATTESTATION = "I am a human reviewer and completed this review independently."
def read(path: Path) -> list[dict[str, str]]:
with path.open(encoding="utf-8-sig", newline="") as handle:
return list(csv.DictReader(handle))
def validate_packet(path: Path) -> tuple[list[dict[str, str]], list[str]]:
rows = read(path)
errors = []
if len(rows) != 84 or len({r.get("item_version_id", "") for r in rows}) != 84:
errors.append(f"{path}: must contain 84 unique item_version_id values")
names = {r.get("reviewer_name", "").strip() for r in rows}
affiliations = {r.get("reviewer_affiliation", "").strip() for r in rows}
if len(names) != 1 or "" in names:
errors.append(f"{path}: exactly one nonblank reviewer_name must appear on all rows")
if len(affiliations) != 1 or "" in affiliations:
errors.append(f"{path}: exactly one nonblank reviewer_affiliation must appear on all rows")
for index, row in enumerate(rows, start=2):
prefix = f"{path}:{index}"
if row.get("decision") not in ALLOWED_DECISIONS:
errors.append(f"{prefix}: invalid/blank decision")
for field in ("wording_verified", "construct_verified", "population_verified", "response_codes_verified", "skip_logic_verified", "missing_rules_verified"):
if row.get(field) not in YES_NO:
errors.append(f"{prefix}: {field} must be yes or no")
if row.get("language_evidence_status") not in LANGUAGE:
errors.append(f"{prefix}: invalid language_evidence_status")
try:
date.fromisoformat(row.get("review_date", ""))
except ValueError:
errors.append(f"{prefix}: review_date must be YYYY-MM-DD")
if row.get("independence_attestation") != ATTESTATION:
errors.append(f"{prefix}: exact independence attestation is required")
if row.get("decision") == "approve" and any(row.get(field) != "yes" for field in ("wording_verified", "construct_verified", "population_verified", "response_codes_verified", "skip_logic_verified", "missing_rules_verified")):
errors.append(f"{prefix}: approve requires all six verification fields=yes")
if row.get("decision") == "approve_with_correction" and not any(row.get(field, "").strip() for field in ("corrected_question_text", "corrected_construct", "corrected_population", "corrected_language", "corrected_response_or_missing_rule")):
errors.append(f"{prefix}: approve_with_correction requires at least one correction")
return rows, errors
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("reviewer_1", type=Path)
parser.add_argument("reviewer_2", type=Path)
parser.add_argument("--adjudication", type=Path)
parser.add_argument("--output", type=Path, default=Path("research/stage1/human_review_validation.json"))
args = parser.parse_args()
first, errors = validate_packet(args.reviewer_1)
second, second_errors = validate_packet(args.reviewer_2)
errors.extend(second_errors)
map1 = {r["item_version_id"]: r for r in first}
map2 = {r["item_version_id"]: r for r in second}
if set(map1) != set(map2):
errors.append("Reviewer packets do not contain the same item IDs")
name1 = next(iter({r.get("reviewer_name", "").strip() for r in first}), "")
name2 = next(iter({r.get("reviewer_name", "").strip() for r in second}), "")
if name1 and name1 == name2:
errors.append("reviewer_1 and reviewer_2 must be distinct actual people")
conflicts = [item for item in sorted(set(map1) & set(map2)) if map1[item].get("decision") != map2[item].get("decision") or map1[item].get("decision") != "approve"]
if conflicts:
if not args.adjudication or not args.adjudication.exists():
errors.append(f"{len(conflicts)} items require adjudication")
else:
adjudication = {r["item_version_id"]: r for r in read(args.adjudication)}
for item in conflicts:
row = adjudication.get(item, {})
if row.get("final_decision") not in {"approve", "approve_with_correction", "reject"}:
errors.append(f"{item}: valid final_decision required")
if not row.get("adjudicator_name", "").strip() or row.get("adjudicator_attestation") != "I am a human adjudicator and resolved this item after reviewing both assessments.":
errors.append(f"{item}: human adjudicator identity and attestation required")
result = {
"status": "passed" if not errors else "failed",
"reviewer_1": name1, "reviewer_2": name2,
"items_reviewer_1": len(first), "items_reviewer_2": len(second),
"conflicts_or_non_approvals": len(conflicts), "errors": errors,
"gate_1_human_review_complete": not errors,
}
args.output.write_text(json.dumps(result, indent=2, ensure_ascii=False) + "\n", encoding="utf-8")
print(json.dumps(result, indent=2, ensure_ascii=False))
return 0 if not errors else 1
if __name__ == "__main__":
raise SystemExit(main())