- Title
- GAD-2
- instrumentId
- T6XP
- Description
- GAD-2
- Instructions
- Over the last two weeks, how often have you been bothered by the following problems?
Questions
Q1: Feeling nervous, anxious or on edge
Question Number | Q1 |
Allow 'Not Answered'? | Yes |
Question Type | pick_one |
Answer Options pick_one
Q2: Not being able to stop or control worrying
Question Number | Q2 |
Allow 'Not Answered'? | Yes |
Question Type | pick_one |
Answer Options pick_one
Scoring
The scoring details below are for information only. The scoring for this survey happens on our side. Please do not provide survey scores.
Score: Score
Question Numbers | Q1, Q2 |
Scoring Source | Sum of answered Values |
Scoring Ranges
Short Label | Long Label | Min | Max |
---|---|---|---|
Clinical | Clinical | 3 | 6 |
Non Clinical | Non Clinical | 0 | 2.99 |
JSON Instrument Definition for developers
{
"instrumentId": "T6XP",
"title": "GAD-2",
"description": "GAD-2",
"instructions": "Over the last two weeks, how often have you been bothered by the following problems?",
"questions": [
{
"assign_qnum": "y",
"instrumentId": "T6XP",
"include_in_export": "y",
"allow_NotAnswered": "y",
"question_status": "ACTIVE",
"question_text": "Feeling nervous, anxious or on edge",
"question_order": 2,
"question_type": "pick_one",
"textbox_max_chars": null,
"textbox_input_type": null,
"textbox_min_value": null,
"textbox_max_value": null,
"date_created": "2023-12-31 19:35:37",
"qNum": "Q1",
"answer_options": [
{
"answer_text": "Not at all",
"answer_order": 1,
"answer_severity": null,
"answer_value": "0.00",
"answer_status": "ACTIVE",
"clients_colName": "",
"date_created": "2023-12-31 19:35:37"
},
{
"answer_text": "Several days",
"answer_order": 2,
"answer_severity": null,
"answer_value": "1.00",
"answer_status": "ACTIVE",
"clients_colName": "",
"date_created": "2023-12-31 19:35:37"
},
{
"answer_text": "More than half the days",
"answer_order": 3,
"answer_severity": null,
"answer_value": "2.00",
"answer_status": "ACTIVE",
"clients_colName": "",
"date_created": "2023-12-31 19:35:37"
},
{
"answer_text": "Nearly every day",
"answer_order": 4,
"answer_severity": null,
"answer_value": "3.00",
"answer_status": "ACTIVE",
"clients_colName": "",
"date_created": "2023-12-31 19:35:37"
},
{
"answer_severity": null,
"answer_value": null,
"answer_text": "Not Answered",
"answer_status": "ACTIVE"
}
]
},
{
"assign_qnum": "y",
"instrumentId": "T6XP",
"include_in_export": "y",
"allow_NotAnswered": "y",
"question_status": "ACTIVE",
"question_text": "Not being able to stop or control worrying",
"question_order": 3,
"question_type": "pick_one",
"textbox_max_chars": null,
"textbox_input_type": null,
"textbox_min_value": null,
"textbox_max_value": null,
"date_created": "2023-12-31 19:35:37",
"qNum": "Q2",
"answer_options": [
{
"answer_text": "Not at all",
"answer_order": 1,
"answer_severity": null,
"answer_value": "0.00",
"answer_status": "ACTIVE",
"clients_colName": "",
"date_created": "2023-12-31 19:35:37"
},
{
"answer_text": "Several days",
"answer_order": 2,
"answer_severity": null,
"answer_value": "1.00",
"answer_status": "ACTIVE",
"clients_colName": "",
"date_created": "2023-12-31 19:35:37"
},
{
"answer_text": "More than half the days",
"answer_order": 3,
"answer_severity": null,
"answer_value": "2.00",
"answer_status": "ACTIVE",
"clients_colName": "",
"date_created": "2023-12-31 19:35:37"
},
{
"answer_text": "Nearly every day",
"answer_order": 4,
"answer_severity": null,
"answer_value": "3.00",
"answer_status": "ACTIVE",
"clients_colName": "",
"date_created": "2023-12-31 19:35:37"
},
{
"answer_severity": null,
"answer_value": null,
"answer_text": "Not Answered",
"answer_status": "ACTIVE"
}
]
}
]
}
Example Push for developers
URL Endpoint:
https://naatpdata.com/v2/api/surveys.php
Authentication
$FACILITY_ID = '123DEMO'; Provided By Us
$SECRET_KEY = 'aaaaaabbbbbbbbccccccccdddddddeeeeeefffffgggggg'; Provided By Us
$API_DATE = gmdate( time() ); Current UNIX UTC time = 1738108730
$API_SIGNATURE = hash_hmac('sha256', $API_DATE . $FACILITY_ID, $SECRET_KEY); 4688e3796cf310fc07560fda83044d991594f4f26a33d8bc40659b47ffff8901
Complete Post
{
"facilityId": "123DEMO",
"apiDate": "1738108730",
"apiSignature": "4688e3796cf310fc07560fda83044d991594f4f26a33d8bc40659b47ffff8901",
"surveys": [
{
"instrumentId": "T6XP",
"sessionId": "123session",
"clientId": "123client",
"assignedToType": "Client",
"yearOfAdmit": "2024",
"yearCompleted": "2024",
"daysFromAdmit": -99,
"daysFromDischarge": 180,
"completedWhile": "postDischarge",
"answerStyle": "byText",
"Q1": "Nearly every day",
"Q2": "More than half the days"
},
{
"instrumentId": "T6XP",
"sessionId": "123session",
"clientId": "123client",
"assignedToType": "Client",
"yearOfAdmit": "2024",
"yearCompleted": "2024",
"daysFromAdmit": 30,
"daysFromDischarge": -99,
"completedWhile": "inTreatment",
"answerStyle": "byValue",
"Q1": 1,
"Q2": 1
}
]
}