{
	"components": {
		"filter-columns": {
            "summary": "Chemical directory filter column list",
            "description": "This API is used to display filter column list data.",
            "tags": [
				"Chemical Directory"
			],
			"consumes": [
				"application/json"
			],
			"produces": [
				"application/json"
			],
            "responses": {
                "200": {
                    "description": "When filter column list data displayed successfully.",
                    "content": {
                        "application/json": {
                            "schema": {
                                "oneOf": [
                                    {
                                        "type": "object",
                                        "properties": {
                                            "status": {
                                                "type": "boolean",
                                                "example": true
                                            },
                                            "code": {
                                                "type": "string",
                                                "message": "Success"
                                            },
                                            "data": {
                                                "type": "object",
                                                "example": {
                                                    "columns": [
                                                        {
                                                            "value": "CAS_RN",
                                                            "name": "CAS RN"
                                                        },
                                                        {
                                                            "value": "PUBCHEM_ID",
                                                            "name": "PUBCHEM ID"
                                                        },
                                                        {
                                                            "value": "CHEMICAL_NAME",
                                                            "name": "CHEMICAL NAME"
                                                        },
                                                        {
                                                            "value": "CHEMICAL_NAME_CUSTOM",
                                                            "name": "CHEMICAL NAME (MULTIPLE-KEYWORD)"
                                                        },
                                                        {
                                                            "value": "SYNONYMS_COMMON_NAME",
                                                            "name": "SYNONYMS / COMMON NAME"
                                                        },
                                                        {
                                                            "value": "IUPAC",
                                                            "name": "IUPAC"
                                                        },
                                                        {
                                                            "value": "CAS_NAME",
                                                            "name": "CAS NAME"
                                                        },
                                                        {
                                                            "value": "SMILES_CODE",
                                                            "name": "SMILES CODE"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    {
                                        "type": "object",
                                        "properties": {
                                            "status": {
                                                "type": "boolean",
                                                "example": true
                                            },
                                            "data": {
                                                "type": "object",
                                                "example": []
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                },
                "400": {
                    "description": "Validation errors.",
                    "content": {
                        "application/json": {
                            "schema": {
                                "oneOf": [
                                    {
                                        "properties": {
                                            "status": {
                                                "type": "boolean",
                                                "example": false
                                            },
                                            "code": {
                                                "type": "string",
                                                "example": "INVALID_API_KEY"
                                            },
                                            "errors": {
                                                "type": "array",
                                                "example": [
                                                    "api access key is missing."
                                                ]
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                }
            }
        },
        "structure-filter-columns": {
            "summary": "Chemical structure columns list",
            "description": "This API is used to display filter column list data.",
            "tags": [
				"Chemical Directory"
			],
			"consumes": [
				"application/json"
			],
			"produces": [
				"application/json"
			],
            "responses": {
                "200": {
                    "description": "When columns list data displayed successfully.",
                    "content": {
                        "application/json": {
                            "schema": {
                                "oneOf": [
                                    {
                                        "type": "object",
                                        "properties": {
                                            "code": {
                                                "type": "string",
                                                "message": "Success"
                                            },
                                            "data": {
                                                "type": "object",
                                                "example": {
                                                    "columns": [
                                                        {
                                                            "value": "SMILES_CODE",
                                                            "name": "SMILES"
                                                        },
                                                        {
                                                            "value": "INCHI",
                                                            "name": "InChl"
                                                        },
                                                        {
                                                            "value": "INCHIKEY",
                                                            "name": "InChl Key"
                                                        },
                                                        {
                                                            "value": "CHEMICAL_NAME",
                                                            "name": "CHEMICAL NAME"
                                                        },
                                                        {
                                                            "value": "IUPAC",
                                                            "name": "IUPAC"
                                                        },
                                                        {
                                                            "value": "CAS_RN",
                                                            "name": "CAS Number"
                                                        },
                                                        {
                                                            "value": "MOLECULAR_FORMULA",
                                                            "name": "Molecular Formula"
                                                        }
                                                    ],
                                                    "examples": [
                                                        {
                                                            "column": "SMILES_CODE",
                                                            "keyword": "C#C"
                                                        },
                                                        {
                                                            "column": "INCHI",
                                                            "keyword": "acetylene"
                                                        },
                                                        {
                                                            "column": "INCHIKEY",
                                                            "keyword": "C2H2"
                                                        },
                                                        {
                                                            "column": "CHEMICAL_NAME",
                                                            "keyword": "ethyne"
                                                        },
                                                        {
                                                            "column": "IUPAC",
                                                            "keyword": "InChI=1S/C2H2/c1-2/h1-2H"
                                                        },
                                                        {
                                                            "column": "CAS_RN",
                                                            "keyword": "HSFWRNGVRCDJHI-UHFFFAOYSA-N"
                                                        },
                                                        {
                                                            "column": "MOLECULAR_FORMULA",
                                                            "keyword": "74-86-2"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    {
                                        "type": "object",
                                        "properties": {
                                            "code": {
                                                "type": "integer",
                                                "example": 200
                                            },
                                            "data": {
                                                "type": "object",
                                                "example": []
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                },
                "400": {
                    "description": "Validation errors.",
                    "content": {
                        "application/json": {
                            "schema": {
                                "oneOf": [
                                    {
                                        "properties": {
                                            "status": {
                                                "type": "boolean",
                                                "example": false
                                            },
                                            "code": {
                                                "type": "string",
                                                "example": "INVALID_API_KEY"
                                            },
                                            "errors": {
                                                "type": "array",
                                                "example": [
                                                    "api access key is missing."
                                                ]
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                }
            }
        },
        "column-list": {
            "summary": "Chemical directory all columns list",
            "description": "This API is used to display column list data.",
            "tags": [
				"Chemical Directory"
			],
			"consumes": [
				"application/json"
			],
			"produces": [
				"application/json"
			],
            "responses": {
                "200": {
                    "description": "When columns list data displayed successfully.",
                    "content": {
                        "application/json": {
                            "schema": {
                                "oneOf": [
                                    {
                                        "type": "object",
                                        "properties": {
                                            "code": {
                                                "type": "string",
                                                "message": "Success"
                                            },
                                            "data": {
                                                "type": "object",
                                                "example": {
                                                    "columns": [
                                                        {
                                                            "value": "gbrn",
                                                            "name": "GREEN BOOK REGISTRATION NUMBER (GBRN)"
                                                        },
                                                        {
                                                            "value": "chemical_name",
                                                            "name": "CHEMICAL NAME"
                                                        },
                                                        {
                                                            "value": "field_of_application",
                                                            "name": "FIELD OF APPLICATION(S)"
                                                        },
                                                        {
                                                            "value": "indication",
                                                            "name": "INDICATION"
                                                        },
                                                        {
                                                            "value": "chemical_structure",
                                                            "name": "CHEMICAL STRUCTURE"
                                                        },
                                                        {
                                                            "value": "description",
                                                            "name": "DESCRIPTION"
                                                        },
                                                        {
                                                            "value": "iupac",
                                                            "name": "IUPAC"
                                                        },
                                                        {
                                                            "value": "cas_rn",
                                                            "name": "CAS RN"
                                                        },
                                                        {
                                                            "value": "cas_name",
                                                            "name": "CAS NAME"
                                                        },
                                                        {
                                                            "value": "chemical_class",
                                                            "name": "CHEMICAL CLASS"
                                                        },
                                                        {
                                                            "value": "substance_origin",
                                                            "name": "SUBSTANCE ORIGIN"
                                                        },
                                                        {
                                                            "value": "originator",
                                                            "name": "ORIGINATOR"
                                                        },
                                                        {
                                                            "value": "originator_logo",
                                                            "name": "ORIGINATOR LOGO"
                                                        },
                                                        {
                                                            "value": "year_of_discovery",
                                                            "name": "YEAR OF DISCOVERY"
                                                        },
                                                        {
                                                            "value": "launch_year",
                                                            "name": "LAUNCH YEAR"
                                                        },
                                                        {
                                                            "value": "launch_status",
                                                            "name": "LAUNCH STATUS"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    {
                                        "type": "object",
                                        "properties": {
                                            "code": {
                                                "type": "integer",
                                                "example": 200
                                            },
                                            "data": {
                                                "type": "object",
                                                "example": []
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                },
                "400": {
                    "description": "Validation errors.",
                    "content": {
                        "application/json": {
                            "schema": {
                                "oneOf": [
                                    {
                                        "properties": {
                                            "status": {
                                                "type": "boolean",
                                                "example": false
                                            },
                                            "code": {
                                                "type": "string",
                                                "example": "INVALID_API_KEY"
                                            },
                                            "errors": {
                                                "type": "array",
                                                "example": [
                                                    "api access key is missing."
                                                ]
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                }
            }
        },
        "search-specific": {
            "summary": "Chemical directory search by GBRN/TRRN",
            "description": "This API is used to show result of specific search.",
            "tags": [
				"Chemical Directory"
			],
			"consumes": [
				"application/json"
			],
			"produces": [
				"application/json"
			],
            "requestBody": {
                "content": {
                    "application/x-www-form-urlencoded": {
                        "schema": {
                            "type": "object",
                            "required": [
                                "search_type",
                                "keyword",
                                "page_no"
                            ],
                            "properties": {
                                "search_type": {
                                    "type": "string",
                                    "enum": [
                                        "GBRN",
                                        "TRRN"
                                    ],
                                    "description": "please select any one type (GBRN, TRRN)",
                                    "errorMessage": {
                                        "enum": "Search type must be GBRN, TRRN"
                                    }
                                },
                                "keyword": {
                                    "type": "string",
                                    "description": "Enter keyword.",
                                    "example": "99"
                                },
                                "page_no": {
                                    "type": "integer",
                                    "description": "Enter page number.",
                                    "example": 1
                                }
                            }
                        }
                    }
                },
                "required": true
            },
            "responses": {
                "200": {
                    "description": "When specific serch data displayed successfully.",
                    "content": {
                        "application/json": {
                            "schema": {
                                "oneOf": [
                                    {
                                        "type": "object",
                                        "properties": {
                                            "code": {
                                                "type": "string",
                                                "message": "Success"
                                            },
                                            "data": {
                                                "type": "object",
                                                "example": {
                                                    "data": {
                                                        "chem_dir_count": 22,
                                                        "chem_dir_data": [
                                                            {
                                                                "gbrn": "10018;10061;10072;10076;10083;10097;10101;10114;10116;10120;10127;10133;10150;10152;10155;10162;10168;10170;10176;10183;10192;10201;10203;10213;10217;10225;10227;10259;10273;10280;10281;10288;10290;10294;10304;10311;10313;10315;10321;10323;10327;10359;10369;10374;10376;10385;10390;10391;10407;10421;10432;10444;10453;10458;10478;10512;10519;10523;10534;10561;10572;10588;10619;10687;10727;10768;10794;10795;10797;10815;10822;10870;1093;10969;10976;11029;11121;11185;11412;11802;12396;12536;12554;12724;14357;14733;14993;15848;15863;159;1595;16263;16292;16303;16304;16468;16560;16564;16628;16730;16745;16766;16814;16863;16982;17121;17152;17404;17524;17544;17581;17600;17660;17719;17856;185;1965;2001;2059;2543;2640;2645;2975;2981;3899;3911;516;517;752;857;859;861;862;863;864;873;921;99",
                                                                "chemical_name": "chloromethylbenzene\n\n",
                                                                "field_of_application": "",
                                                                "indication": "",
                                                                "chemical_structure": "27987-13-9_CASKJ.png",
                                                                "description": "Chemical Formula: C7H7Cl\nExact Mass: 126.02\nMolecular Weight: 126.58\nm/z: 126.02 (100.0%), 128.02 (32.0%), 127.03 (7.6%), 129.02 (2.4%)\nElemental Analysis: C, 66.42; H, 5.57; Cl, 28.01\n",
                                                                "iupac": "(chloromethyl)benzene\n",
                                                                "cas_rn": "27987-13-9\n\n",
                                                                "cas_name": "",
                                                                "chemical_class": "",
                                                                "substance_origin": "",
                                                                "originator": "",
                                                                "originator_logo": "",
                                                                "year_of_discovery": "",
                                                                "launch_year": "",
                                                                "launch_status": "",
                                                                "year_wise_off_patent_molecule": "",
                                                                "synonyms_common_name": "",
                                                                "trade_name_proprietary_name": "",
                                                                "related_compounds": "",
                                                                "pubchem_id": "CID 7503 (Benzyl Chloride)\n\n",
                                                                "ec_no": "",
                                                                "us_epa_chemical_code": "",
                                                                "unii": "",
                                                                "un_number": "",
                                                                "atc": "",
                                                                "dsstox_substance_id": "",
                                                                "other_codes": "",
                                                                "strain_no": "",
                                                                "summary_invent_info": "",
                                                                "compound_patent_1st_disclosure": "",
                                                                "google_patent_hyper_link": "",
                                                                "history_development_licencing_commercialisation": "",
                                                                "non_patent": "",
                                                                "gcd": "",
                                                                "summary_phsyi_chem": "",
                                                                "molecular_formula": "C7H7Cl\n",
                                                                "molecular_weight": "",
                                                                "inchi": "",
                                                                "inchikey": "KCXMKQUNVWSEMD-UHFFFAOYSA-N\n",
                                                                "smiles_code": "",
                                                                "canonical_smiles": "ClCC1=CC=CC=C1",
                                                                "hydrogen_bond_donor_count": "",
                                                                "hydrogen_bond_acceptor_count": "",
                                                                "rotatable_bond_count": "",
                                                                "complexity": "",
                                                                "cskf": "",
                                                                "topological_polar_surface_area": "",
                                                                "monoisotopic_mass": "",
                                                                "exact_mass": "",
                                                                "logp_computed": "",
                                                                "compound_is_canonicalized": "",
                                                                "formal_charge": "",
                                                                "heavy_atom_count": "",
                                                                "defined_atom_stereocenter_count": "",
                                                                "undefined_atom_stereocenter_count": "",
                                                                "defined_bond_stereocenter_count": "",
                                                                "undefined_bond_stereocenter_count": "",
                                                                "isotope_atom_count": "",
                                                                "covalently_bonded_unit_count": "",
                                                                "summary_physicochemical_properties": "",
                                                                "isomerism": "",
                                                                "physical_description": "",
                                                                "polymorphism": "",
                                                                "melting_point": "",
                                                                "boiling_point": "",
                                                                "color_form": "",
                                                                "decomposition": "",
                                                                "corrosivity": "",
                                                                "refractive_index": "",
                                                                "kovats_retention_index": "",
                                                                "degradation_point": "",
                                                                "flashpoint": "",
                                                                "freezing_point": "",
                                                                "sublimation": "",
                                                                "agueous_solubility": "",
                                                                "solubility_in_organic_solvent": "",
                                                                "density": "",
                                                                "bulk_density_specific_gravity": "",
                                                                "vapour_pressure": "",
                                                                "logp": "",
                                                                "stability": "",
                                                                "ph": "",
                                                                "dissociation_constants": "",
                                                                "henrys_law_constant": "",
                                                                "application_rate": "",
                                                                "maximum_uv_vis_absorption": "",
                                                                "surface_tension": "",
                                                                "commentry": "",
                                                                "notes": "",
                                                                "remarks": "",
                                                                "literature": "",
                                                                "information_sources": "",
                                                                "pdf_multiple_pdf": "",
                                                                "trrn": "1015;10172;10447;1072;10807;11574;11581;11936;1202;1209;13917;14103;1417;14195;14334;14404;15263;15417;15778;1594;1605;1606;16497;16534;16841;17269;17521;17635;17687;1770;17729;17730;17808;17986;17992;18086;18087;18115;18471;18627;1866;18710;18779;18804;18926;19087;19213;19214;1930;19325;19545;19546;19547;19548;19607;19608;19609;19647;19774;19792;19798;19896;19963;19975;20000;20047;20048;20073;20093;20172;20295;20303;2031;20340;20368;20375;20406;2046;20469;20472;20550;20614;2067;20673;20756;20977;20983;21018;21269;21271;21277;21278;21280;21283;21286;21547;21565;21588;21604;21614;21667;21705;21774;21823;21851;21934;21962;21986;21997;22014;22015;22180;22194;22230;22301;22351;22356;22501;22570;22581;22582;22612;22655;22656;22694;22701;22703;22833;22871;22906;22971;23001;23002;23007;23039;2304;23130;23159;23918;23950;23953;23966;23995;24004;24005;24404;24485;24506;24513;24663;24820;24952;24957;25091;25121;25170;2522;2524;25253;25289;25531;25684;25715;25765;25788;25799;25837;25844;25961;26030;26112;26223;26233;2758;2913;3077;3122;3128;3240;3251;3475;3518;3915;400;403;405;4247;437;5222;538;5707;5712;5947;6278;6369;6520;6521;7311;8029;8277;8278;8669;8672;8733;8734;8980;8981;8982;9941",
                                                                "dummy_2": "27987-13-9",
                                                                "dummy_3": "153370",
                                                                "dummy_4": "",
                                                                "dummy_5": "",
                                                                "dummy_6": "",
                                                                "dummy_7": "",
                                                                "dummy_8": "",
                                                                "dummy_9": "",
                                                                "dummy_10": "",
                                                                "created_at": "2024-04-22T09:52:59.538Z",
                                                                "id": "6626338cd181724dc7c3bb16"
                                                            },
                                                            {
                                                                "gbrn": "10018;10061;10076;10083;10101;10114;10120;10127;10133;10150;10152;10155;10168;10170;10176;10183;10192;10201;10203;10213;10217;10225;10259;10273;10278;10280;10288;10290;10304;10311;10313;10315;10321;10323;10327;10369;10373;10374;10376;10385;10391;10421;10444;10453;10458;10508;10512;10519;10534;10553;10572;10605;10619;10687;10725;10726;10727;10768;10794;10795;10797;10815;10870;1093;10969;10976;10977;10983;11095;11107;11140;11412;12207;12362;12396;12536;12554;12724;14128;14357;14388;14733;14993;15744;15848;15863;159;15903;1595;16292;16303;16304;16457;16458;16468;16564;16583;16628;16695;16730;16745;16766;16814;16821;16863;16881;16958;16973;16982;1710;17121;17152;17228;17404;17524;17544;17581;17600;17660;17856;18088;18113;18214;185;1965;2001;2059;2640;2645;268;2751;2975;2981;3026;3320;3899;3911;456;516;517;752;803;857;859;861;862;863;864;873;921;99",
                                                                "chemical_name": "CID 6101669\n",
                                                                "field_of_application": "",
                                                                "indication": "",
                                                                "chemical_structure": "ChemRobo_PUB_46177_CS.png",
                                                                "description": "",
                                                                "iupac": "magnesium bromide ethanide\n",
                                                                "cas_rn": "6000-67-5\n;6000-67-5\n",
                                                                "cas_name": "",
                                                                "chemical_class": "",
                                                                "substance_origin": "",
                                                                "originator": "",
                                                                "originator_logo": "",
                                                                "year_of_discovery": "",
                                                                "launch_year": "",
                                                                "launch_status": "",
                                                                "year_wise_off_patent_molecule": "",
                                                                "synonyms_common_name": "1.DTXSID80275976\r\n2.FT-0626349\r\n3.6000-67-5\n",
                                                                "trade_name_proprietary_name": "",
                                                                "related_compounds": "",
                                                                "pubchem_id": "6101669\n",
                                                                "ec_no": "",
                                                                "us_epa_chemical_code": "",
                                                                "unii": "",
                                                                "un_number": "",
                                                                "atc": "",
                                                                "dsstox_substance_id": "",
                                                                "other_codes": "",
                                                                "strain_no": "",
                                                                "summary_invent_info": "",
                                                                "compound_patent_1st_disclosure": "",
                                                                "google_patent_hyper_link": "",
                                                                "history_development_licencing_commercialisation": "",
                                                                "non_patent": "",
                                                                "gcd": "",
                                                                "summary_phsyi_chem": "",
                                                                "molecular_formula": "C2H5BrMg\n",
                                                                "molecular_weight": "133.27\n",
                                                                "inchi": "InChI=1S/C2H5.BrH.Mg/c1-2;;/h1H2,2H3;1H;/q-1;;+2/p-1\n",
                                                                "inchikey": "FRIJBUGBVQZNTB-UHFFFAOYSA-M\n",
                                                                "smiles_code": "",
                                                                "canonical_smiles": "[CH2-]C.[Br-].[Mg+2]",
                                                                "hydrogen_bond_donor_count": "0\n",
                                                                "hydrogen_bond_acceptor_count": "2\n",
                                                                "rotatable_bond_count": "0\n",
                                                                "complexity": "0\n",
                                                                "cskf": "",
                                                                "topological_polar_surface_area": "0 Å²\n",
                                                                "monoisotopic_mass": "131.94250\n",
                                                                "exact_mass": "131.94250\n",
                                                                "logp_computed": "",
                                                                "compound_is_canonicalized": "Yes\n",
                                                                "formal_charge": "0\n",
                                                                "heavy_atom_count": "4\n",
                                                                "defined_atom_stereocenter_count": "0\n",
                                                                "undefined_atom_stereocenter_count": "0\n",
                                                                "defined_bond_stereocenter_count": "0\n",
                                                                "undefined_bond_stereocenter_count": "0\n",
                                                                "isotope_atom_count": "0\n",
                                                                "covalently_bonded_unit_count": "3\n",
                                                                "summary_physicochemical_properties": "",
                                                                "isomerism": "",
                                                                "physical_description": "",
                                                                "polymorphism": "",
                                                                "melting_point": "",
                                                                "boiling_point": "",
                                                                "color_form": "",
                                                                "decomposition": "",
                                                                "corrosivity": "",
                                                                "refractive_index": "",
                                                                "kovats_retention_index": "",
                                                                "degradation_point": "",
                                                                "flashpoint": "",
                                                                "freezing_point": "",
                                                                "sublimation": "",
                                                                "agueous_solubility": "",
                                                                "solubility_in_organic_solvent": "",
                                                                "density": "",
                                                                "bulk_density_specific_gravity": "",
                                                                "vapour_pressure": "",
                                                                "logp": "",
                                                                "stability": "",
                                                                "ph": "",
                                                                "dissociation_constants": "",
                                                                "henrys_law_constant": "",
                                                                "application_rate": "",
                                                                "maximum_uv_vis_absorption": "",
                                                                "surface_tension": "",
                                                                "commentry": "",
                                                                "notes": "",
                                                                "remarks": "",
                                                                "literature": "",
                                                                "information_sources": "",
                                                                "pdf_multiple_pdf": "",
                                                                "trrn": "1015;10172;10447;10789;10807;11574;11581;11618;11645;11654;11657;11662;11936;1202;1209;12104;13212;13917;14103;1417;1418;14195;14329;14334;14404;15263;15417;15778;1594;15983;1605;1606;16497;16841;17186;17269;17521;1759;17635;17687;1770;17729;17730;17808;17986;17992;18086;18087;18471;18627;1866;18710;18779;1885;18926;18972;19087;19213;19214;1930;19325;19607;19608;19609;19774;19792;1996;19963;19975;20000;20073;20093;20295;20303;2031;20340;20368;20375;20406;2046;20469;20472;20614;2067;20756;20771;20801;20917;20918;20920;20921;20922;20927;20928;20930;20931;20939;20948;20949;20950;20951;20962;20977;20983;21018;21048;21269;21271;21277;21278;21280;21283;21286;21390;21558;21585;21588;21604;21608;21614;21708;2182;21823;21851;22177;22194;22501;22518;22655;22656;22710;22842;22848;22853;22906;22971;22986;22987;22989;22991;22994;22999;23001;23002;23010;23039;2304;23130;23482;23774;23891;23894;23912;23918;23966;2399;23995;24005;24506;24513;24820;24952;24957;25088;25089;25091;25092;25170;2522;2524;25253;25531;25684;25715;25765;25799;25837;25844;25961;26112;26223;26233;2758;2913;3077;3122;3128;3147;3240;3251;3447;3461;3475;3518;3915;400;403;405;4097;4098;4107;4247;437;4375;4376;4377;4607;5221;5222;5226;538;5442;5443;5547;5707;5712;5947;6198;6278;6369;6520;6521;6737;7307;7308;7309;7311;7993;8002;8029;8277;8278;8537;8543;8630;8632;8635;8639;8669;8672;8733;8734;8980;8981;8982;9941;9971",
                                                                "dummy_2": "6000-67-5",
                                                                "dummy_3": "154003",
                                                                "dummy_4": "",
                                                                "dummy_5": "",
                                                                "dummy_6": "",
                                                                "dummy_7": "",
                                                                "dummy_8": "",
                                                                "dummy_9": "",
                                                                "dummy_10": "",
                                                                "created_at": "2024-04-22T09:52:59.546Z",
                                                                "id": "6626338cd181724dc7c3bcf5"
                                                            }
                                                        ]
                                                    }
                                                }
                                            }
                                        }
                                    },
                                    {
                                        "type": "object",
                                        "properties": {
                                            "code": {
                                                "type": "integer",
                                                "example": 200
                                            },
                                            "data": {
                                                "type": "object",
                                                "example": []
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                },
                "400": {
                    "description": "Validation errors.",
                    "content": {
                        "application/json": {
                            "schema": {
                                "oneOf": [
                                    {
                                        "properties": {
                                            "status": {
                                                "type": "boolean",
                                                "example": false
                                            },
                                            "code": {
                                                "type": "string",
                                                "example": "INVALID_API_KEY"
                                            },
                                            "errors": {
                                                "type": "array",
                                                "example": [
                                                    "api access key is missing."
                                                ]
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                }
            }
        }
	}
}