API დოკუმენტაცია

Rout List:

                    
                    https://api.toduaclinic.ge/sms/verify
                    https://api.toduaclinic.ge/login
                    https://api.toduaclinic.ge/user/get
                    https://api.toduaclinic.ge/form100
                    https://api.toduaclinic.ge/result
                    https://api.toduaclinic.ge/laboratory
                    https://api.toduaclinic.ge/prescription
                    https://api.toduaclinic.ge/visit
                    https://api.toduaclinic.ge/doctors/{page}
                    https://api.toduaclinic.ge/notifications
                    https://api.toduaclinic.ge/notifications/update
                    https://api.toduaclinic.ge/notifications/count
                    https://api.toduaclinic.ge/forms/get
                    https://api.toduaclinic.ge/form/save/{order_id}/{form_id}
                    https://api.toduaclinic.ge/questions/get/{order_id}/{form_id}
                

Authenticate:

Rout:

Parameter Type Required Description
idnum string Yes უნდა მოხდეს პირადი ნომრის დაპოსტვა - სახელით idnum

Request

                            
{
    "idnum": "00000000000"
}
                            
                        

Response

                            
{
    "Success":true,
    "Message":"accepted",
    "Output":null,
    "ErrorCode":0
}
                            
                        

Rout:

Parameter Type Required Description
idnum string Yes მოხმარებლის პირადი ნომერი
smsCode int Yes მომხმარებლის ნომერზე მიღებული 4 ციფრიანი sms კოდი

Request

                            
{
    "idnum": "00000000000",
    "smsCode": 0000
}
                            
                        

Response

                            

{
    "user": {
        "token": "Be3d1d4888e5ae26434ff2599a0418236824eb85ec1772f0103fbb796eac3fe93803d817e961a0025bf9fea1d45c05ee983754adac3767ed8062df32ea43e558"
    },
    "expires": "2025-03-07T10:33:47.666Z"
}

                            
                        

Rout:

Headers Type Required Description
Token string Yes Header ში იგზავნება token, Bearer წინსართით

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Response

                            
{
    "id": 0,
    "patient_id": 0,
    "auth_token": "Be3d1d4888e5ae26434ff2599a0418236824eb85ec1772f0103fbb796eac3fe93803d817e961a0025bf9fea1d45c05ee983754adac3767ed8062df32ea43e558",
    "idnum": "00000000000",
    "fname": "John",
    "lname": "Doe",
    "email": "test@gmail.com",
    "phone": "599000000",
    "date_of_birth": "1991-10-12",
    "country_id": 1,
    "country_name": "საქართველო",
    "city": "თბილისი",
    "address": "თბილისი, #22",
    "password": null,
    "sms": 0000,
    "sms_date": "2025-02-05 14:36:31",
    "created_at": "2024-08-05 11:01:02",
    "updated_at": "2025-02-05 14:33:31"
}
                            
                        

Rout:

Headers Parameter Type Required Description
Token sort (asc | desc) string No Header ში იგზავნება token, Bearer წინსართით და სორტირების შემთხვევაში sort პარამეტრი იგზავნება ლინკში
doctor int No Header ში იგზავნება token, Bearer წინსართით და ექიმის ფილტრის შემთხვევაში ექიმის id იგზავნება ლინკში
start string No Header ში იგზავნება token, Bearer წინსართით და დაწყების თარიღის ფილტრის შემთხვევაში დაწყების დრო იგზავნება ლინკში
end string No Header ში იგზავნება token, Bearer წინსართით და დასრულების თარიღის ფილტრის შემთხვევაში დასრულების დრო იგზავნება ლინკში
branch (main | vere | digomi) string No Header ში იგზავნება token, Bearer წინსართით და ფილიალის ფილტრის შემთხვევაში ფილიალი იგზავნება ლინკში
search string No Header ში იგზავნება token, Bearer წინსართით და ქივორდით ფილტრის შემთხვევაში ქივორდი იგზავნება ლინკში

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Parameter

                            
{
    'sort': 'asc',
    'doctor': '10',
    'start': '2025-02-19',
    'end': '2025-02-19',
    'branch': 'main',
    'search': 'ფორმა 100'
}
                            
                        

Response

                            
{
    "data": [
        {
            "id": 2641,
            "user_id": 312664,
            "doctor_id": 74,
            "name": "Item name",
            "doc_type": "document type",
            "date": "2025-01-10",
            "branch": "main",
            "file": "base64",
            "status": "seen",
            "created_at": "2025-01-10T11:38:03.000000Z",
            "updated_at": "2025-01-20T06:43:31.000000Z",
            "doctor": {
                "id": 48,
                "doctor_id": 74,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:54.000000Z",
                "updated_at": "2024-08-02T09:58:54.000000Z"
            }
        },
        {
            "id": 2641,
            "user_id": 312664,
            "doctor_id": 74,
            "name": "Item name",
            "doc_type": "document type",
            "date": "2025-01-10",
            "branch": "main",
            "file": "base64",
            "status": "seen",
            "created_at": "2025-01-10T11:38:03.000000Z",
            "updated_at": "2025-01-20T06:43:31.000000Z",
            "doctor": {
                "id": 48,
                "doctor_id": 74,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:54.000000Z",
                "updated_at": "2024-08-02T09:58:54.000000Z"
            }
        }
    ],
    "count": 2
}
                            
                        

Rout:

Headers Parameter Type Required Description
Token sort (asc | desc) string No Header ში იგზავნება token, Bearer წინსართით და სორტირების შემთხვევაში sort პარამეტრი იგზავნება ლინკში
doctor int No Header ში იგზავნება token, Bearer წინსართით და ექიმის ფილტრის შემთხვევაში ექიმის id იგზავნება ლინკში
start string No Header ში იგზავნება token, Bearer წინსართით და დაწყების თარიღის ფილტრის შემთხვევაში დაწყების დრო იგზავნება ლინკში
end string No Header ში იგზავნება token, Bearer წინსართით და დასრულების თარიღის ფილტრის შემთხვევაში დასრულების დრო იგზავნება ლინკში
branch (main | vere | digomi) string No Header ში იგზავნება token, Bearer წინსართით და ფილიალის ფილტრის შემთხვევაში ფილიალი იგზავნება ლინკში
search string No Header ში იგზავნება token, Bearer წინსართით და ქივორდით ფილტრის შემთხვევაში ქივორდი იგზავნება ლინკში

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Parameter

                            
{
    'sort': 'asc',
    'doctor': '10',
    'start': '2025-02-19',
    'end': '2025-02-19',
    'branch': 'main',
    'search': 'ფორმა 100'
}
                            
                        

Response

                            
{
    "data": [
        
        {
            "id": 129,
            "user_id": 312664,
            "doctor_id": 363,
            "remote_file_id": null,
            "name": "Item name",
            "doc_type": "document type",
            "date": "2021-08-17",
            "branch": "main",
            "file": null,
            "status": "seen",
            "created_at": "2024-09-02T09:38:12.000000Z",
            "updated_at": "2024-09-05T11:50:09.000000Z",
            "doctor": {
                "id": 246,
                "doctor_id": 363,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:55.000000Z",
                "updated_at": "2024-08-02T09:58:55.000000Z"
            }
        },
        {
            "id": 128,
            "user_id": 312664,
            "doctor_id": 363,
            "remote_file_id": null,
            "name": "Item name",
            "doc_type": "document type",
            "date": "2021-08-13",
            "branch": "main",
            "file": null,
            "status": "seen",
            "created_at": "2024-09-02T09:38:12.000000Z",
            "updated_at": "2024-09-05T11:50:09.000000Z",
            "doctor": {
                "id": 246,
                "doctor_id": 363,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:55.000000Z",
                "updated_at": "2024-08-02T09:58:55.000000Z"
            }
        }
    ],
    "count": 2
}
                            
                        

Rout:

Headers Parameter Type Required Description
Token sort (asc | desc) string No Header ში იგზავნება token, Bearer წინსართით და სორტირების შემთხვევაში sort პარამეტრი იგზავნება ლინკში
doctor int No Header ში იგზავნება token, Bearer წინსართით და ექიმის ფილტრის შემთხვევაში ექიმის id იგზავნება ლინკში
start string No Header ში იგზავნება token, Bearer წინსართით და დაწყების თარიღის ფილტრის შემთხვევაში დაწყების დრო იგზავნება ლინკში
end string No Header ში იგზავნება token, Bearer წინსართით და დასრულების თარიღის ფილტრის შემთხვევაში დასრულების დრო იგზავნება ლინკში
branch (main | vere | digomi) string No Header ში იგზავნება token, Bearer წინსართით და ფილიალის ფილტრის შემთხვევაში ფილიალი იგზავნება ლინკში
search string No Header ში იგზავნება token, Bearer წინსართით და ქივორდით ფილტრის შემთხვევაში ქივორდი იგზავნება ლინკში

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Parameter

                            
{
    'sort': 'asc',
    'doctor': '10',
    'start': '2025-02-19',
    'end': '2025-02-19',
    'branch': 'main',
    'search': 'ფორმა 100'
}
                            
                        

Response

                            
{
    "data": [
        {
            "id": 5185,
            "user_id": 117529,
            "doctor_id": 184,
            "name": "Item name",
            "category_id": 4,
            "date": "2024-12-12",
            "branch": "main",
            "file": "base 64",
            "status": null,
            "created_at": "2024-12-18T11:06:12.000000Z",
            "updated_at": "2024-12-18T11:06:12.000000Z",
            "doctor": {
                "id": 129,
                "doctor_id": 184,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:55.000000Z",
                "updated_at": "2024-08-02T09:58:55.000000Z"
            },
            "category": {
                "id": 4,
                "category_id": 4,
                "name": "ელექტროლიტები",
                "name_eng": "Electrolytes",
                "created_at": "2024-07-24T09:53:14.000000Z",
                "updated_at": "2024-07-24T09:53:14.000000Z"
            }
        },
        {
            "id": 5185,
            "user_id": 117529,
            "doctor_id": 184,
            "name": "Item name",
            "category_id": 4,
            "date": "2024-12-12",
            "branch": "main",
            "file": "base 64",
            "status": null,
            "created_at": "2024-12-18T11:06:12.000000Z",
            "updated_at": "2024-12-18T11:06:12.000000Z",
            "doctor": {
                "id": 129,
                "doctor_id": 184,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:55.000000Z",
                "updated_at": "2024-08-02T09:58:55.000000Z"
            },
            "category": {
                "id": 4,
                "category_id": 4,
                "name": "ელექტროლიტები",
                "name_eng": "Electrolytes",
                "created_at": "2024-07-24T09:53:14.000000Z",
                "updated_at": "2024-07-24T09:53:14.000000Z"
            }
        }
    ],
    "category": [
        {
            "id": 1,
            "category_id": 1,
            "name": "ბაქტერიოლოგია",
            "name_eng": "Bacteriology",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 2,
            "category_id": 2,
            "name": "ბიოლოგიური სითხეების გამოკვლევა",
            "name_eng": "Analysis of biological fluids",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 3,
            "category_id": 3,
            "name": "ბიოქიმია",
            "name_eng": "Biochemistry",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 4,
            "category_id": 4,
            "name": "ელექტროლიტები",
            "name_eng": "Electrolytes",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 5,
            "category_id": 5,
            "name": "იმუნოლოგია",
            "name_eng": "Immunology",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 6,
            "category_id": 6,
            "name": "კოაგულოლოგია",
            "name_eng": "Coagulation",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 7,
            "category_id": 7,
            "name": "მანუალური ტესტები",
            "name_eng": "Manual tests",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 8,
            "category_id": 8,
            "name": "ჰემატოლოგია",
            "name_eng": "Hematology",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 9,
            "category_id": 9,
            "name": "სისხლის ჯგუფი და რეზუსი",
            "name_eng": "Blood group and rhesus",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 10,
            "category_id": 10,
            "name": "შარდის ანალიზი",
            "name_eng": "Urine analysis",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 11,
            "category_id": 11,
            "name": "სისხლის გაზები",
            "name_eng": "Blood gas",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 12,
            "category_id": 12,
            "name": "მოლეკულური დიაგნოსტიკა და ონკოგენეტიკა",
            "name_eng": "Molecular biology & Oncogenetics",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        },
        {
            "id": 13,
            "category_id": 13,
            "name": "ციტოლოგია",
            "name_eng": "cytology",
            "created_at": "2024-07-24T09:53:14.000000Z",
            "updated_at": "2024-07-24T09:53:14.000000Z"
        }
    ],
    "count": 2
}
                            
                        

Rout:

Headers Parameter Type Required Description
Token sort (asc | desc) string No Header ში იგზავნება token, Bearer წინსართით და სორტირების შემთხვევაში sort პარამეტრი იგზავნება ლინკში

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Parameter

                            
{
    'sort': 'asc'
}
                            
                        

Response

                            
{
    "data": [
        {
            "id": 2730,
            "user_id": 117529,
            "doctor_id": 352438,
            "medication_name": "Medication name",
            "medication_api": "Papaverine hydrochloride Charcoal",
            "medication_details": "Medication details",
            "recipe_number": "C3E10011859751",
            "generic": "Generic name",
            "recipe_date": "2024-12-20",
            "medication_count": "84",
            "medication_rule": "Medication rule",
            "sale_id": 1268957,
            "sale_item_id": 7273644,
            "service_name": "Service name",
            "status": null,
            "created_at": "2024-12-20T10:44:02.000000Z",
            "updated_at": "2024-12-20T10:44:02.000000Z",
            "doctor": {
                "id": 380,
                "doctor_id": 352438,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:55.000000Z",
                "updated_at": "2024-08-02T09:58:55.000000Z"
            }
        },
        {
            "id": 2730,
            "user_id": 117529,
            "doctor_id": 352438,
            "medication_name": "Medication name",
            "medication_api": "Papaverine hydrochloride Charcoal",
            "medication_details": "Medication details",
            "recipe_number": "C3E10011859751",
            "generic": "Generic name",
            "recipe_date": "2024-12-20",
            "medication_count": "84",
            "medication_rule": "Medication rule",
            "sale_id": 1268957,
            "sale_item_id": 7273644,
            "service_name": "Service name",
            "status": null,
            "created_at": "2024-12-20T10:44:02.000000Z",
            "updated_at": "2024-12-20T10:44:02.000000Z",
            "doctor": {
                "id": 380,
                "doctor_id": 352438,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:55.000000Z",
                "updated_at": "2024-08-02T09:58:55.000000Z"
            }
        }
    ],
    
    "count": 2
}
                            
                        

Rout:

Headers Parameter Type Required Description
Token sort (asc | desc) string No Header ში იგზავნება token, Bearer წინსართით და სორტირების შემთხვევაში sort პარამეტრი იგზავნება ლინკში
doctor int No Header ში იგზავნება token, Bearer წინსართით და ექიმის ფილტრის შემთხვევაში ექიმის id იგზავნება ლინკში
start string No Header ში იგზავნება token, Bearer წინსართით და დაწყების თარიღის ფილტრის შემთხვევაში დაწყების დრო იგზავნება ლინკში
end string No Header ში იგზავნება token, Bearer წინსართით და დასრულების თარიღის ფილტრის შემთხვევაში დასრულების დრო იგზავნება ლინკში
branch (main | vere | digomi) string No Header ში იგზავნება token, Bearer წინსართით და ფილიალის ფილტრის შემთხვევაში ფილიალი იგზავნება ლინკში
search string No Header ში იგზავნება token, Bearer წინსართით და ქივორდით ფილტრის შემთხვევაში ქივორდი იგზავნება ლინკში

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Parameter

                            
{
    'sort': 'asc',
    'doctor': '10',
    'start': '2025-02-19',
    'end': '2025-02-19',
    'branch': 'main',
    'search': 'ფორმა 100'
}
                            
                        

Response

                            
{
    "data": [
        {
            "id": 2411,
            "user_id": 117529,
            "doctor_id": 352438,
            "name": "item name",
            "doc_type": "document type",
            "date": "2024-12-20",
            "branch": "main",
            "file": "base64",
            "status": "seen",
            "created_at": "2024-12-20T10:44:02.000000Z",
            "updated_at": "2025-02-10T10:03:29.000000Z",
            "doctor": {
                "id": 380,
                "doctor_id": 352438,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:55.000000Z",
                "updated_at": "2024-08-02T09:58:55.000000Z"
            }
        },
        
        {
            "id": 2411,
            "user_id": 117529,
            "doctor_id": 352438,
            "name": "item name",
            "doc_type": "document type",
            "date": "2024-12-20",
            "branch": "main",
            "file": "base64",
            "status": "seen",
            "created_at": "2024-12-20T10:44:02.000000Z",
            "updated_at": "2025-02-10T10:03:29.000000Z",
            "doctor": {
                "id": 380,
                "doctor_id": 352438,
                "fname": "John",
                "lname": "Doe",
                "created_at": "2024-08-02T09:58:55.000000Z",
                "updated_at": "2024-08-02T09:58:55.000000Z"
            }
        }
    ],
    "count": 2
}
                            
                        

Rout:

Headers Type Required Description
Token string Yes Header ში იგზავნება token, Bearer წინსართით

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Response

                            
{
    "data": [
        {
            "id": 1,
            "doctor_id": 1,
            "fname": "John",
            "lname": "Doe",
            "created_at": "2024-08-02T09:58:53.000000Z",
            "updated_at": "2024-08-02T09:58:53.000000Z"
        },
        {
            "id": 5,
            "doctor_id": 9,
            "fname": "John",
            "lname": "Doe",
            "created_at": "2024-08-02T09:58:54.000000Z",
            "updated_at": "2024-08-02T09:58:54.000000Z"
        }
    ]
}
                            
                        

Rout:

Headers Type Required Description
Token string Yes Header ში იგზავნება token, Bearer წინსართით

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Response

                            
{
    "data": [
        {
            "id": 2730,
            "user_id": 117529,
            "doctor_id": 352438,
            "medication_name": "",
            "medication_api": "",
            "medication_details": "",
            "recipe_number": "",
            "generic": "",
            "recipe_date": "2024-12-20",
            "medication_count": "84",
            "medication_rule": "",
            "sale_id": 1268957,
            "sale_item_id": 7273644,
            "service_name": "",
            "status": "seen",
            "created_at": "2024-12-20T10:44:02.000000Z",
            "updated_at": "2025-02-10T10:03:30.000000Z"
        }
    ]
}
                            
                        

Rout:

Headers Type Required Description
Token string Yes Header ში იგზავნება token, Bearer წინსართით

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Response

                            
{"count":0}
                            
                        

Rout:

Headers Type Required Description
Token string Yes Header ში იგზავნება token, Bearer წინსართით

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Response

                            
{
    "data": [
        {
            "id": 1,
            "form_id": 1,
            "order_id": 2165432,
            "user_id": 45466,
            "status": null,
            "created_at": "2025-02-05T10:04:50.000000Z",
            "updated_at": "2025-02-05T10:04:50.000000Z",
            "form": {
                "id": 1,
                "title": "\u10de\u10d0\u10ea\u10d8\u10d4\u10dc\u10e2\u10d8\u10e1",
                "created_at": "2025-02-03T07:27:02.000000Z",
                "updated_at": "2025-02-03T07:27:02.000000Z"
            }
        }
    ]
}
                            
                        

Rout:

Headers Type Required Description
Token string Yes Header ში იგზავნება token, Bearer წინსართით

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Response

                            
{
    "data": {
        "questions": [
            {
                "id": 1,
                "form_id": 1,
                "parent_id": null,
                "title": "1. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8 \u10d2\u10e3\u10da\u10d8\u10e1 \u10d0\u10e0\u10d4\u10e8\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno1",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 1,
                        "question_id": 1,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 2,
                        "question_id": 1,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 2,
                "form_id": 1,
                "parent_id": 1,
                "title": "_ \u10d3\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1 \u10d3\u10e0\u10dd\u10e1",
                "type": "radio",
                "name": "istoriebi_yesorno2",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 3,
                        "question_id": 2,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 4,
                        "question_id": 2,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 3,
                "form_id": 1,
                "parent_id": 1,
                "title": "_ \u10db\u10dd\u10e1\u10d5\u10d4\u10dc\u10d4\u10d1\u10d8\u10e1 \u10d3\u10e0\u10dd\u10e1",
                "type": "radio",
                "name": "istoriebi_yesorno3",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 5,
                        "question_id": 3,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 6,
                        "question_id": 3,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 4,
                "form_id": 1,
                "parent_id": 1,
                "title": "_ \u10e6\u10d0\u10db\u10d8\u10d7",
                "type": "radio",
                "name": "istoriebi_yesorno4",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 7,
                        "question_id": 4,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 8,
                        "question_id": 4,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 5,
                "form_id": 1,
                "parent_id": null,
                "title": "2. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e5\u10dd\u10e8\u10d8\u10dc\u10d8 (\u10f0\u10d0\u10d4\u10e0\u10d8\u10e1 \u10e3\u10d9\u10db\u10d0\u10e0\u10d8\u10e1\u10dd\u10d1\u10d0)",
                "type": "radio",
                "name": "istoriebi_yesorno5",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 9,
                        "question_id": 5,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 10,
                        "question_id": 5,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 6,
                "form_id": 1,
                "parent_id": 5,
                "title": "_ \u10d9\u10d8\u10d1\u10d4\u10d6\u10d4 \u10d0\u10e1\u10d5\u10da\u10d8\u10e1\u10d0\u10e1",
                "type": "radio",
                "name": "istoriebi_yesorno6",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 11,
                        "question_id": 6,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 12,
                        "question_id": 6,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 7,
                "form_id": 1,
                "parent_id": 5,
                "title": "_ \u10db\u10dd\u10e1\u10d5\u10d4\u10dc\u10d4\u10d1\u10d8\u10d7 \u10db\u10d3\u10d2\u10dd\u10db\u10d0\u10e0\u10d4\u10dd\u10d1\u10d0\u10e8\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno7",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 13,
                        "question_id": 7,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 14,
                        "question_id": 7,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 8,
                "form_id": 1,
                "parent_id": 5,
                "title": "_ \u10e6\u10d0\u10db\u10d8\u10d7",
                "type": "radio",
                "name": "istoriebi_yesorno8",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 15,
                        "question_id": 8,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 16,
                        "question_id": 8,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 9,
                "form_id": 1,
                "parent_id": null,
                "title": "3. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d0\u10e0\u10d8\u10d7\u10db\u10d8\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno9",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 17,
                        "question_id": 9,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 18,
                        "question_id": 9,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 10,
                "form_id": 1,
                "parent_id": null,
                "title": "4. \u10d2\u10d0\u10ec\u10e3\u10ee\u10d4\u10d1\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10db\u10d0\u10e6\u10d0\u10da\u10d8 \u10d0\u10e0\u10e2\u10d4\u10e0\u10d8\u10e3\u10da\u10d8 \u10ec\u10dc\u10d4\u10d5\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno10",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 19,
                        "question_id": 10,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 20,
                        "question_id": 10,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 11,
                "form_id": 1,
                "parent_id": null,
                "title": "5. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d8\u10da\u10d8 \u10d2\u10e3\u10da-\u10e1\u10d8\u10e1\u10ee\u10da\u10eb\u10d0\u10e0\u10e6\u10d5\u10d7\u10d0 \u10e1\u10d8\u10e1\u10e2\u10d4\u10db\u10d0\u10e1\u10d7\u10d0\u10dc \u10d3\u10d0\u10d9\u10d0\u10d5\u10e8\u10d8\u10e0\u10d4\u10d1\u10e3\u10da\u10d8 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d4\u10d1\u10d8 (\u10e9\u10d0\u10db\u10dd\u10d7\u10d5\u10d0\u10da\u10d4\u10d7)",
                "type": "radio",
                "name": "istoriebi_yesorno11",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 21,
                        "question_id": 11,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 22,
                        "question_id": 11,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 12,
                "form_id": 1,
                "parent_id": null,
                "title": "",
                "type": "textarea",
                "name": "istoriebi_gadguldaav",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 23,
                        "question_id": 12,
                        "title": "\u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d4\u10d1\u10d8",
                        "value": "",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 13,
                "form_id": 1,
                "parent_id": null,
                "title": "6. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d7\u10d0\u10d5\u10d8\u10e1 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno12",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 24,
                        "question_id": 13,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 25,
                        "question_id": 13,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 14,
                "form_id": 1,
                "parent_id": 13,
                "title": "_ \u10d7\u10d0\u10d5\u10d8\u10e1 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8\u10e1 \u10d3\u10e0\u10dd\u10e1 \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d2\u10e3\u10da\u10d8\u10e1\u10e0\u10d4\u10d5\u10d8\u10e1 \u10e8\u10d4\u10d2\u10e0\u10eb\u10dc\u10d4\u10d1\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno13",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 26,
                        "question_id": 14,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 27,
                        "question_id": 14,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 15,
                "form_id": 1,
                "parent_id": 13,
                "title": "_ \u10d7\u10d0\u10d5\u10d8\u10e1 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8\u10e1 \u10d3\u10e0\u10dd\u10e1 \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e6\u10d4\u10d1\u10d8\u10dc\u10d4\u10d1\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno14",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 28,
                        "question_id": 15,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 29,
                        "question_id": 15,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 16,
                "form_id": 1,
                "parent_id": 13,
                "title": "_ \u10d7\u10d0\u10d5\u10d8\u10e1 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8\u10e1 \u10d3\u10e0\u10dd\u10e1 \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e8\u10e3\u10d8\u10da\u10d8 \u10e7\u10e3\u10e0\u10d4\u10d1\u10e8\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno15",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 30,
                        "question_id": 16,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 31,
                        "question_id": 16,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 17,
                "form_id": 1,
                "parent_id": 13,
                "title": "_ \u10d7\u10d0\u10d5\u10d8\u10e1 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8\u10e1 \u10d3\u10e0\u10dd\u10e1 \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d7\u10d0\u10d5\u10d1\u10e0\u10e3\u10e1\u10ee\u10d5\u10d4\u10d5\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno16",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 32,
                        "question_id": 17,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 33,
                        "question_id": 17,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 18,
                "form_id": 1,
                "parent_id": null,
                "title": "7. \u10d2\u10e5\u10dd\u10dc\u10d8\u10d0\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d2\u10dd\u10dc\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0\u10d9\u10d0\u10e0\u10d2\u10d5\u10d8\u10e1 \u10d4\u10de\u10d8\u10d6\u10dd\u10d3\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno17",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 34,
                        "question_id": 18,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 35,
                        "question_id": 18,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 19,
                "form_id": 1,
                "parent_id": null,
                "title": "8. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10db\u10ee\u10d4\u10d3\u10d5\u10d4\u10da\u10dd\u10d1\u10d8\u10e1 \u10de\u10e0\u10dd\u10d1\u10da\u10d4\u10db\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno18",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 36,
                        "question_id": 19,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 37,
                        "question_id": 19,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 20,
                "form_id": 1,
                "parent_id": 19,
                "title": "_ \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d2\u10da\u10d0\u10e3\u10d9\u10dd\u10db\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno19",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 38,
                        "question_id": 20,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 39,
                        "question_id": 20,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 21,
                "form_id": 1,
                "parent_id": 19,
                "title": "_ \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10db\u10d8\u10dd\u10de\u10d8\u10d0 (\u10d0\u10ee\u10da\u10dd\u10db\u10ee\u10d4\u10d3\u10d5\u10d4\u10da\u10dd\u10d1\u10d0)",
                "type": "radio",
                "name": "istoriebi_yesorno20",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 40,
                        "question_id": 21,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 41,
                        "question_id": 21,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 22,
                "form_id": 1,
                "parent_id": null,
                "title": "9. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10de\u10e0\u10dd\u10d1\u10da\u10d4\u10db\u10d4\u10d1\u10d8 \u10de\u10d8\u10e0\u10d8\u10e1 \u10e6\u10e0\u10e3\u10e1 \u10db\u10ee\u10e0\u10d8\u10d5",
                "type": "radio",
                "name": "istoriebi_yesorno21",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 42,
                        "question_id": 22,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 43,
                        "question_id": 22,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 23,
                "form_id": 1,
                "parent_id": 22,
                "title": "_ \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10db\u10d4\u10e0\u10e7\u10d4\u10d5\u10d8 \u10d9\u10d1\u10d8\u10da\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno22",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 44,
                        "question_id": 23,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 45,
                        "question_id": 23,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 24,
                "form_id": 1,
                "parent_id": 22,
                "title": "_ \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10de\u10e0\u10dd\u10d7\u10d4\u10d6\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno23",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 46,
                        "question_id": 24,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 47,
                        "question_id": 24,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 25,
                "form_id": 1,
                "parent_id": 22,
                "title": "_ \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10db\u10dd\u10e1\u10d0\u10ee\u10e1\u10dc\u10d4\u10da\u10d8 \u10de\u10e0\u10dd\u10d7\u10d4\u10d6\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno24",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 48,
                        "question_id": 25,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 49,
                        "question_id": 25,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 26,
                "form_id": 1,
                "parent_id": null,
                "title": "10. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e7\u10da\u10d0\u10de\u10d5\u10d8\u10e1 \u10d2\u10d0\u10eb\u10dc\u10d4\u10da\u10d4\u10d1\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno25",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 50,
                        "question_id": 26,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 51,
                        "question_id": 26,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 27,
                "form_id": 1,
                "parent_id": null,
                "title": "11. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e7\u10d4\u10da\u10d8\u10e1 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno26",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 52,
                        "question_id": 27,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 53,
                        "question_id": 27,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 28,
                "form_id": 1,
                "parent_id": null,
                "title": "12. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10ee\u10d5\u10d4\u10da\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno27",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 54,
                        "question_id": 28,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 55,
                        "question_id": 28,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 29,
                "form_id": 1,
                "parent_id": 28,
                "title": "_ \u10e1\u10d8\u10e1\u10ee\u10da\u10d8\u10d0\u10dc\u10d8 \u10dc\u10d0\u10ee\u10d5\u10d4\u10da\u10d8\u10d7",
                "type": "radio",
                "name": "istoriebi_yesorno28",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 56,
                        "question_id": 29,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 57,
                        "question_id": 29,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 30,
                "form_id": 1,
                "parent_id": 28,
                "title": "_ \u10db\u10dd\u10e7\u10d5\u10d8\u10d7\u10d0\u10da\u10dd \u10e4\u10d4\u10e0\u10d8\u10e1 \u10dc\u10d0\u10ee\u10d5\u10d4\u10da\u10d8\u10d7",
                "type": "radio",
                "name": "istoriebi_yesorno29",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 58,
                        "question_id": 30,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 59,
                        "question_id": 30,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 31,
                "form_id": 1,
                "parent_id": null,
                "title": "13. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d1\u10e0\u10dd\u10dc\u10e5\u10e3\u10da\u10d8 \u10d0\u10e1\u10d7\u10db\u10d8\u10e1 \u10db\u10dd\u10d5\u10da\u10d4\u10dc\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno30",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 60,
                        "question_id": 31,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 61,
                        "question_id": 31,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 32,
                "form_id": 1,
                "parent_id": null,
                "title": "14. \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d8\u10da\u10d8 \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e4\u10d8\u10da\u10e2\u10d5\u10d4\u10d1\u10d8\u10e1 \u10d0\u10dc\u10d7\u10d4\u10d1\u10d0 \u10d0\u10dc \u10de\u10da\u10d4\u10d5\u10e0\u10d8\u10e2\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno31",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 62,
                        "question_id": 32,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 63,
                        "question_id": 32,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 33,
                "form_id": 1,
                "parent_id": null,
                "title": "15. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8 \u10db\u10e3\u10ea\u10da\u10d8\u10e1 \u10d0\u10e0\u10d4\u10e8\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno32",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 64,
                        "question_id": 33,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 65,
                        "question_id": 33,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 34,
                "form_id": 1,
                "parent_id": null,
                "title": "16. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d9\u10e3\u10ed\u10d8\u10e1\u10d0 \u10d3\u10d0 \u10d7\u10dd\u10e0\u10db\u10d4\u10e2\u10d2\u10dd\u10ef\u10d0 \u10dc\u10d0\u10ec\u10da\u10d0\u10d5\u10d8\u10e1 \u10ec\u10e7\u10da\u10e3\u10da\u10dd\u10d5\u10d0\u10dc\u10d8 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno33",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 66,
                        "question_id": 34,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 67,
                        "question_id": 34,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 35,
                "form_id": 1,
                "parent_id": null,
                "title": "17. \u10d2\u10e5\u10dd\u10dc\u10d8\u10d0\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e8\u10d0\u10d5\u10d8 \u10e4\u10d4\u10e0\u10d8\u10e1 \u10d2\u10d0\u10dc\u10d0\u10d5\u10d0\u10da\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno34",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 68,
                        "question_id": 35,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 69,
                        "question_id": 35,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 36,
                "form_id": 1,
                "parent_id": null,
                "title": "18. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d1\u10dd\u10e7\u10d8\u10dc\u10d8, \u10d2\u10e3\u10da\u10eb\u10db\u10d0\u10e0\u10d5\u10d0, \u10e1\u10da\u10dd\u10d9\u10d8\u10dc\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno35",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 70,
                        "question_id": 36,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 71,
                        "question_id": 36,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 37,
                "form_id": 1,
                "parent_id": null,
                "title": "19. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d7\u10d8\u10e0\u10d9\u10db\u10da\u10d8\u10e1 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno36",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 72,
                        "question_id": 37,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 73,
                        "question_id": 37,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 38,
                "form_id": 1,
                "parent_id": null,
                "title": "20. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10dc\u10d0\u10e6\u10d5\u10da-\u10d9\u10d4\u10dc\u10ed\u10dd\u10d5\u10d0\u10dc\u10d8 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno37",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 74,
                        "question_id": 38,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 75,
                        "question_id": 38,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 39,
                "form_id": 1,
                "parent_id": null,
                "title": "21. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e2\u10d9\u10d8\u10d5\u10d8\u10da\u10d8 \u10ec\u10d4\u10da\u10d8\u10e1 \u10d0\u10e0\u10d4\u10e8\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno38",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 76,
                        "question_id": 39,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 77,
                        "question_id": 39,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 40,
                "form_id": 1,
                "parent_id": null,
                "title": "22. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e8\u10d0\u10e0\u10d3\u10d5\u10d8\u10e1 \u10d2\u10d0\u10eb\u10dc\u10d4\u10da\u10d4\u10d1\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno39",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 78,
                        "question_id": 40,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 79,
                        "question_id": 40,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 41,
                "form_id": 1,
                "parent_id": null,
                "title": "23. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10ee\u10e8\u10d8\u10e0\u10d8 \u10e8\u10d0\u10e0\u10d3\u10d5\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno40",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 80,
                        "question_id": 41,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 81,
                        "question_id": 41,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 42,
                "form_id": 1,
                "parent_id": null,
                "title": "24. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d1\u10e3\u10d0\u10e1\u10d8\u10da\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno41",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 82,
                        "question_id": 42,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 83,
                        "question_id": 42,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 43,
                "form_id": 1,
                "parent_id": null,
                "title": "25. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d5\u10d4\u10dc\u10d4\u10d1\u10d8\u10e1 \u10d5\u10d0\u10e0\u10d8\u10d9\u10dd\u10d6\u10e3\u10da\u10d8 \u10d2\u10d0\u10d2\u10d0\u10dc\u10d8\u10d4\u10e0\u10d4\u10d1\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno42",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 84,
                        "question_id": 43,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 85,
                        "question_id": 43,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 44,
                "form_id": 1,
                "parent_id": null,
                "title": "26. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d3\u10d8\u10d0\u10d1\u10d4\u10e2\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno43",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 86,
                        "question_id": 44,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 87,
                        "question_id": 44,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 45,
                "form_id": 1,
                "parent_id": null,
                "title": "27. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e4\u10d0\u10e0\u10d8\u10e1\u10d4\u10d1\u10e3\u10e0\u10d8 \u10ef\u10d8\u10e0\u10d9\u10d5\u10da\u10d8\u10e1 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno44",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 88,
                        "question_id": 45,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 89,
                        "question_id": 45,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 46,
                "form_id": 1,
                "parent_id": null,
                "title": "28. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d9\u10d0\u10dc\u10d8\u10e1 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno45",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 90,
                        "question_id": 46,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 91,
                        "question_id": 46,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 47,
                "form_id": 1,
                "parent_id": null,
                "title": "29. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e1\u10d0\u10e1\u10e5\u10d4\u10e1\u10dd \u10dd\u10e0\u10d2\u10d0\u10dc\u10dd\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno46",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 92,
                        "question_id": 47,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 93,
                        "question_id": 47,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 48,
                "form_id": 1,
                "parent_id": null,
                "title": "30. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d5\u10d4\u10dc\u10d4\u10e0\u10e3\u10da\u10d8 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno47",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 94,
                        "question_id": 48,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 95,
                        "question_id": 48,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 49,
                "form_id": 1,
                "parent_id": null,
                "title": "31. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d0\u10da\u10d4\u10e0\u10d2\u10d8\u10d0 \u10db\u10d4\u10d3\u10d8\u10d9\u10d0\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d6\u10d4",
                "type": "radio",
                "name": "istoriebi_yesorno48",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 96,
                        "question_id": 49,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 97,
                        "question_id": 49,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 50,
                "form_id": 1,
                "parent_id": 49,
                "title": "",
                "type": "textarea",
                "name": "istoriebi_medicdasaxeleba",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 98,
                        "question_id": 50,
                        "title": "_ \u10db\u10d4\u10d3\u10d8\u10d9\u10d0\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10d3\u10d0\u10e1\u10d0\u10ee\u10d4\u10da\u10d4\u10d1\u10d0",
                        "value": null,
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 51,
                "form_id": 1,
                "parent_id": null,
                "title": "SNAQ \u10db\u10dd\u10d9\u10da\u10d4 \u10dc\u10e3\u10e2\u10e0\u10d8\u10ea\u10d8\u10e3\u10da\u10d8 \u10e8\u10d4\u10e4\u10d0\u10e1\u10d4\u10d1\u10d0",
                "type": "title",
                "name": null,
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": []
            },
            {
                "id": 52,
                "form_id": 1,
                "parent_id": null,
                "title": "\u10e3\u10dc\u10d4\u10d1\u10da\u10d8\u10d4\u10d7 \u10ee\u10dd\u10db \u10d0\u10e0 \u10d3\u10d0\u10d2\u10d8\u10d9\u10da\u10d8\u10d0\u10d7 \u10ec\u10dd\u10dc\u10d0\u10e8\u10d8",
                "type": "radio",
                "name": null,
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": []
            },
            {
                "id": 53,
                "form_id": 1,
                "parent_id": 52,
                "title": "6 \u10d9\u10d8\u10da\u10dd\u10d6\u10d4 \u10db\u10d4\u10e2\u10d8 \u10d1\u10dd\u10da\u10dd 6 \u10d7\u10d5\u10d4\u10e8\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno62",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 99,
                        "question_id": 53,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 100,
                        "question_id": 53,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 54,
                "form_id": 1,
                "parent_id": 52,
                "title": "3 \u10d9\u10d8\u10da\u10dd\u10d6\u10d4 \u10db\u10d4\u10e2\u10d8 \u10d1\u10dd\u10da\u10dd \u10d7\u10d5\u10d4\u10e8\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno63",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 101,
                        "question_id": 54,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 102,
                        "question_id": 54,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 55,
                "form_id": 1,
                "parent_id": 52,
                "title": "\u10d1\u10dd\u10da\u10dd \u10d7\u10d5\u10d4\u10e8\u10d8 \u10db\u10d0\u10d3\u10d8\u10e1 \u10d3\u10d0\u10d9\u10d0\u10e0\u10d2\u10d5\u10d0\u10e1 \u10ee\u10dd\u10db \u10d0\u10e0 \u10e8\u10d4\u10e3\u10ec\u10e3\u10ee\u10d4\u10d1\u10d8\u10ee\u10d0\u10e0\u10d7",
                "type": "radio",
                "name": "istoriebi_yesorno64",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 103,
                        "question_id": 55,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 104,
                        "question_id": 55,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 56,
                "form_id": 1,
                "parent_id": 52,
                "title": "\u10d9\u10d5\u10d4\u10d1\u10d8\u10d7 \u10d3\u10d0\u10dc\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10e1 \u10d0\u10dc \u10d6\u10dd\u10dc\u10d3\u10d8\u10d7 \u10e1\u10d0\u10d9\u10d5\u10d4\u10d1\u10e1 \u10ee\u10dd\u10db \u10d0\u10e0 \u10d8\u10e6\u10d4\u10d1\u10d7",
                "type": "radio",
                "name": "istoriebi_yesorno65",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 105,
                        "question_id": 56,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 106,
                        "question_id": 56,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 57,
                "form_id": 1,
                "parent_id": null,
                "title": "32. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e1\u10d4\u10d6\u10dd\u10dc\u10e3\u10e0\u10d8 \u10d0\u10da\u10d4\u10e0\u10d2\u10d8\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno49",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 107,
                        "question_id": 57,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 108,
                        "question_id": 57,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 58,
                "form_id": 1,
                "parent_id": null,
                "title": "33. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d0\u10da\u10d4\u10e0\u10d2\u10d8\u10d0 \u10d9\u10d5\u10d4\u10d1\u10d8\u10e1 \u10de\u10e0\u10dd\u10d3\u10e3\u10e5\u10e2\u10d4\u10d1\u10d6\u10d4",
                "type": "radio",
                "name": "istoriebi_yesorno50",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 109,
                        "question_id": 58,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 110,
                        "question_id": 58,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 59,
                "form_id": 1,
                "parent_id": null,
                "title": "34. \u10e6\u10d4\u10d1\u10e3\u10da\u10dd\u10d1\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10db\u10d4\u10d3\u10d8\u10d9\u10d0\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10e1",
                "type": "radio",
                "name": "istoriebi_yesorno51",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 111,
                        "question_id": 59,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 112,
                        "question_id": 59,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 60,
                "form_id": 1,
                "parent_id": null,
                "title": "",
                "type": "textarea",
                "name": "istoriebi_medicdasaxeleba1",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 113,
                        "question_id": 60,
                        "title": "_ \u10db\u10d4\u10d3\u10d8\u10d9\u10d0\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10d3\u10d0\u10e1\u10d0\u10ee\u10d4\u10da\u10d4\u10d1\u10d0",
                        "value": "",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 61,
                "form_id": 1,
                "parent_id": null,
                "title": "35. \u10e9\u10d0\u10db\u10dd\u10d7\u10d5\u10d0\u10da\u10d4\u10d7 \u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10db\u10d8\u10d4\u10e0 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d8\u10da\u10d8 \u10d3\u10d0\u10d0\u10d5\u10d0\u10d3\u10d4\u10d1\u10d4\u10d1\u10d8",
                "type": "textarea",
                "name": "istoriebi_gad_daavad_1",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 114,
                        "question_id": 61,
                        "title": "",
                        "value": "",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 62,
                "form_id": 1,
                "parent_id": null,
                "title": "36. \u10d8\u10dc\u10e4\u10d8\u10ea\u10d8\u10e0\u10d4\u10d1\u10e3\u10da\u10d8 \u10ee\u10d0\u10e0\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d0\u10d8\u10d5-\u10d8\u10dc\u10e4\u10d4\u10e5\u10ea\u10d8\u10d8\u10d7",
                "type": "radio",
                "name": "istoriebi_yesorno52",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 115,
                        "question_id": 62,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 116,
                        "question_id": 62,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 63,
                "form_id": 1,
                "parent_id": null,
                "title": "37. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d8\u10da\u10d8 \u10f0\u10d4\u10de\u10d0\u10e2\u10d8\u10e2\u10d8 (A, B, C), \u10e2\u10e3\u10d1\u10d4\u10e0\u10d9\u10e3\u10da\u10dd\u10d6\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno53",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 117,
                        "question_id": 63,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 118,
                        "question_id": 63,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 64,
                "form_id": 1,
                "parent_id": null,
                "title": "38. \u10db\u10d8\u10e6\u10d4\u10d1\u10e3\u10da\u10d8 \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d7\u10d0\u10d5\u10d8\u10e1 \u10e5\u10d0\u10da\u10d0\u10e1 \u10e2\u10e0\u10d0\u10d5\u10db\u10d0",
                "type": "radio",
                "name": "istoriebi_yesorno54",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 119,
                        "question_id": 64,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 120,
                        "question_id": 64,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 65,
                "form_id": 1,
                "parent_id": null,
                "title": "39. \u10d4\u10ec\u10d4\u10d5\u10d8\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d7\u10d0\u10db\u10d1\u10d0\u10e5\u10dd\u10e1",
                "type": "radio",
                "name": "istoriebi_yesorno55",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 121,
                        "question_id": 65,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 122,
                        "question_id": 65,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 66,
                "form_id": 1,
                "parent_id": null,
                "title": "40. \u10d4\u10e2\u10d0\u10dc\u10d4\u10d1\u10d8\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10d0\u10da\u10d9\u10dd\u10f0\u10dd\u10da\u10e1",
                "type": "radio",
                "name": "istoriebi_yesorno56",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 123,
                        "question_id": 66,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 124,
                        "question_id": 66,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 67,
                "form_id": 1,
                "parent_id": null,
                "title": "41. \u10d8\u10e6\u10d4\u10d1\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10dc\u10d0\u10e0\u10d9\u10dd\u10e2\u10d8\u10d9\u10d4\u10d1\u10e1",
                "type": "radio",
                "name": "istoriebi_yesorno57",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 125,
                        "question_id": 67,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 126,
                        "question_id": 67,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 68,
                "form_id": 1,
                "parent_id": null,
                "title": "42. \u10e3\u10e9\u10d8\u10d5\u10d8\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e3\u10eb\u10d8\u10da\u10dd\u10d1\u10d0\u10e1",
                "type": "radio",
                "name": "istoriebi_yesorno58",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 127,
                        "question_id": 68,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 128,
                        "question_id": 68,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            },
            {
                "id": 69,
                "form_id": 1,
                "parent_id": null,
                "title": "43. \u10d2\u10d0\u10e5\u10d5\u10d7 \u10d7\u10e3 \u10d0\u10e0\u10d0 \u10e1\u10d8\u10e1\u10ee\u10da\u10d8\u10e1 \u10e8\u10d4\u10d3\u10d4\u10d3\u10d4\u10d1\u10d8\u10e1 \u10de\u10e0\u10dd\u10db\u10da\u10d4\u10db\u10d4\u10d1\u10d8",
                "type": "radio",
                "name": "istoriebi_yesorno59",
                "created_at": "2025-02-03T07:30:53.000000Z",
                "updated_at": "2025-02-03T07:30:53.000000Z",
                "answer": [
                    {
                        "id": 129,
                        "question_id": 69,
                        "title": "\u10d3\u10d8\u10d0\u10ee",
                        "value": "1",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    },
                    {
                        "id": 130,
                        "question_id": 69,
                        "title": "\u10d0\u10e0\u10d0",
                        "value": "2",
                        "created_at": "2025-02-03T07:37:50.000000Z",
                        "updated_at": "2025-02-03T07:37:50.000000Z"
                    }
                ]
            }
        ],
        "form_result": {
            "1": {
                "form_id": 1,
                "answer_id": 1,
                "question_id": 1,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "1",
                "question_name": "istoriebi_yesorno1"
            },
            "2": {
                "form_id": 1,
                "answer_id": 3,
                "question_id": 2,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "1",
                "question_name": "istoriebi_yesorno2"
            },
            "3": {
                "form_id": 1,
                "answer_id": 6,
                "question_id": 3,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "2",
                "question_name": "istoriebi_yesorno3"
            },
            "4": {
                "form_id": 1,
                "answer_id": 7,
                "question_id": 4,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "1",
                "question_name": "istoriebi_yesorno4"
            },
            "5": {
                "form_id": 1,
                "answer_id": 10,
                "question_id": 5,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "2",
                "question_name": "istoriebi_yesorno5"
            },
            "6": {
                "form_id": 1,
                "answer_id": 11,
                "question_id": 6,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "1",
                "question_name": "istoriebi_yesorno6"
            },
            "7": {
                "form_id": 1,
                "answer_id": 13,
                "question_id": 7,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "1",
                "question_name": "istoriebi_yesorno7"
            },
            "8": {
                "form_id": 1,
                "answer_id": 15,
                "question_id": 8,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "1",
                "question_name": "istoriebi_yesorno8"
            },
            "9": {
                "form_id": 1,
                "answer_id": 18,
                "question_id": 9,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "2",
                "question_name": "istoriebi_yesorno9"
            },
            "12": {
                "form_id": 1,
                "answer_id": 23,
                "question_id": 12,
                "user_id": 45466,
                "order_id": 2165432,
                "answer_value": "test",
                "question_name": "istoriebi_gadguldaav"
            }
        },
        "user_form_status": null
    }
    }
                            
                        

Rout:

Headers Parameter Type Required Description
Token formData string No Header ში იგზავნება token, Bearer წინსართით და სორტირების შემთხვევაში sort პარამეტრი იგზავნება ლინკში

Headers

                            
{
    'Authorization': 'Bearer [Your token]'
}
                            
                        

Parameter

                            
{
    "data": {
        "1": {
            "form_id": 1,
            "answer_id": 1,
            "question_id": 1,
            "user_id": 45466,
            "order_id": 2165432,
            "answer_value": "1",
            "question_name": "istoriebi_yesorno1"
        },
        "2": {
            "form_id": 1,
            "answer_id": 3,
            "question_id": 2,
            "user_id": 45466,
            "order_id": 2165432,
            "answer_value": "1",
            "question_name": "istoriebi_yesorno2"
        },
        .....
    }
}
                              
                            
                        

Response

                            
{
    "status": "success",
    "message": "\u10d7\u10e5\u10d5\u10d4\u10dc \u10ec\u10d0\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7 \u10e8\u10d4\u10d0\u10d5\u10e1\u10d4\u10d7 \u10e4\u10dd\u10e0\u10db\u10d0"
}