{
  "openapi": "3.0.0",
  "info": {
    "title": "Chemrobotics API",
    "description": "<strong>This is an api doc for chemrobotics API's.</strong>",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://chem-api.ampleebusiness.in/",
      "description": "Live server"
    },
    {
      "url": "http://localhost:3000/",
      "description": "Local server"
    }
  ],
  "security": [
    {
      "ApiKeyAuth": []
    }
  ],
  "paths": {
    "/login": {
      "post": {
        "summary": "User Login API",
        "description": "This API is used to user login.",
        "tags": [
          "Auth"
        ],
        "consumes": [
          "application/json"
        ],
        "produces": [
          "application/json"
        ],
        "requestBody": {
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "required": [
                  "email",
                  "password"
                ],
                "properties": {
                  "email": {
                    "type": "string",
                    "description": "Enter email.",
                    "example": "yash.dhakad@gmail.com"
                  },
                  "password": {
                    "type": "string",
                    "description": "Enter password.",
                    "example": "123456"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "When login data displayed successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "oneOf": [
                    {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "message": "Success"
                        },
                        "data": {
                          "type": "object",
                          "example": {
                            "user_info": {
                              "user_id": 621,
                              "name": "YASHWANT DHAKAD",
                              "email": "yash.dhakad@gmail.com",
                              "mobile_no": "07415538151",
                              "company_name": "KISAAN",
                              "auth_key": "e38c4c571d487fb65b8f14dab2390ec3",
                              "token": "ogAWOUy038",
                              "account_type": "free",
                              "gender": "Male",
                              "address": "5- A vaibhav Nagar, Indore",
                              "state": "MP",
                              "country": "India",
                              "pincode": "452016",
                              "status": "active",
                              "trial_expired": "0",
                              "start_date": "2021-04-06T18:30:00.000Z",
                              "expired_date": "2021-04-30T18:30:00.000Z",
                              "created_at": "2021-04-07T12:08:23.000Z"
                            }
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/technical-routes/filter-column-list": {
      "get": {
        "summary": "Technical routes filter column list",
        "description": "This API is used to display filter column list data.",
        "tags": [
          "Technical Routes"
        ],
        "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": "gbrn",
                                "name": "GBRN"
                              },
                              {
                                "value": "trrn",
                                "name": "TRRN"
                              },
                              {
                                "value": "cprn",
                                "name": "CPRN"
                              },
                              {
                                "value": "active_ingredient",
                                "name": "ACTIVE INGREDIENT"
                              },
                              {
                                "value": "active_ingredient_cas_rn",
                                "name": "ACTIVE INGREDIENT CAS RN"
                              },
                              {
                                "value": "field_of_application",
                                "name": "FIELD OF APPLICATION (AGROCHEMICAL / PHARMACEUTICAL / CHEMICAL)"
                              },
                              {
                                "value": "applications",
                                "name": "APPLICATIONS"
                              },
                              {
                                "value": "reactants_cas_rn",
                                "name": "REACTANTS CAS RN"
                              },
                              {
                                "value": "intermediate_reactants_cas_rn",
                                "name": "INTERMEDIATE REACTANTS CAS RN"
                              }
                            ]
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/technical-routes/column-list": {
      "get": {
        "summary": "Technical routes columns list",
        "description": "This API is used to display columns list data.",
        "tags": [
          "Technical Routes"
        ],
        "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": "GBRN"
                              },
                              {
                                "value": "trrn",
                                "name": "TRRN"
                              },
                              {
                                "value": "cprn",
                                "name": "CPRN"
                              },
                              {
                                "value": "active_ingredient",
                                "name": "ACTIVE INGREDIENT"
                              },
                              {
                                "value": "active_ingredient_cas_rn",
                                "name": "ACTIVE INGREDIENT CAS RN"
                              },
                              {
                                "value": "field_of_application",
                                "name": "FIELD OF APPLICATION (AGROCHEMICAL / PHARMACEUTICAL / CHEMICAL)"
                              },
                              {
                                "value": "applications",
                                "name": "APPLICATIONS"
                              },
                              {
                                "value": "reactants_cas_rn",
                                "name": "REACTANTS CAS RN"
                              },
                              {
                                "value": "intermediate_reactants_cas_rn",
                                "name": "INTERMEDIATE REACTANTS CAS RN"
                              }
                            ]
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/technical-routes/auto-suggestions": {
      "post": {
        "summary": "Technical routes auto suggestion list",
        "description": "This API is used to display auto suggestion data.",
        "tags": [
          "Technical Routes"
        ],
        "consumes": [
          "application/json"
        ],
        "produces": [
          "application/json"
        ],
        "requestBody": {
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "required": [
                  "column",
                  "keyword"
                ],
                "properties": {
                  "column": {
                    "type": "string",
                    "description": "Enter column name.",
                    "example": "active_ingredient"
                  },
                  "keyword": {
                    "type": "string",
                    "description": "Enter keyword.",
                    "example": "acetate"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "When auto suggestion data displayed successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "oneOf": [
                    {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "message": "Success"
                        },
                        "data": {
                          "type": "object",
                          "example": {
                            "suggestions": [
                              "LEUPROLIDE ACETATE",
                              "SODIUM ACETATE  (APP. DYE)",
                              "SODIUM FLUOROACETATE (RODENTICIDE)",
                              "PHENYLMERCURIC ACETATE (FUNGICIDEHERBICIDE)",
                              "PHENYL MERCURIC ACETATE (APP. COSMETIC PRESERVATIVES)",
                              "SODIUM 1-NAPHTHALENEACETATE",
                              "(Z)-11-HEXADECENYL ACETATE",
                              "BETAMETHASONE ACETATE",
                              "CYPROTERONE ACETATE",
                              "DIFLORASONE DIACETATE"
                            ]
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/technical-routes/ros-search": {
      "post": {
        "summary": "Technical routes ros search data",
        "description": "This API is used to show result of ros search.",
        "tags": [
          "Technical Routes"
        ],
        "consumes": [
          "application/json"
        ],
        "produces": [
          "application/json"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "criteria"
                ],
                "properties": {
                  "criteria": {
                    "type": "object",
                    "description": "Enter search criteria.",
                    "example": [
                      {
                        "column": "active_ingredient",
                        "keyword": "sitagliptin"
                      },
                      {
                        "operator": "OR",
                        "column": "active_ingredient",
                        "keyword": "acetic acid"
                      }
                    ],
                    "required": true
                  },
                  "page_no": {
                    "type": "integer",
                    "description": "Enter page number.",
                    "example": 1,
                    "required": false
                  },
                  "filter_enable": {
                    "type": "boolean",
                    "description": "Enter value true (when need filter dropdown data)",
                    "example": false,
                    "required": false
                  },
                  "filters": {
                    "type": "object",
                    "description": "Enter filter value choosing in dropdown.",
                    "example": {
                      "route_type": "REPORTED ROUTE"
                    },
                    "required": false
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "When ros serch data displayed successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "oneOf": [
                    {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "message": "Success"
                        },
                        "data": {
                          "type": "object",
                          "example": {
                            "data": {
                              "ros_count": 15,
                              "ros_data": [
                                {
                                  "trrn": 999,
                                  "cprn": null,
                                  "active_ingredient": "SODIUM FLUOROACETATE (RODENTICIDE); TRICHLOROETHYLENE  (APP. COSMETIC AGENTS); TRICHLOROETHYLENE  (APP. COSMETIC AGENTS);ACETIC ACID  (APP. DYE)",
                                  "active_ingredient_cas_rn": "62-74-8",
                                  "field_of_application": "AGROCHEMICAL / COSMETIC CHEMICAL / SYNTHETIC DYE",
                                  "applications": "SODIUM FLUOROACETATE (RODENTICIDE); TRICHLOROETHYLENE  (APP. COSMETIC AGENTS); TRICHLOROETHYLENE  (APP. COSMETIC AGENTS);ACETIC ACID  (APP. DYE)",
                                  "reactants_cas_rn": "acetic acid; CAS RN: 64-19-7\n1,1,2-trichloroethene; CAS RN: 79-01-6\n2-chloroacetic acid; CAS RN: 79-11-8\nmethanol; CAS RN: 630-08-0\nmethyl 2-chloroacetate; CAS RN: 96-34-4\nsodium 2-fluoroacetate; Sodium fluoroacetate; CAS RN: 62-74-8\nChlorine; CAS RN: 7782-50-5\nPotassium fluoride; CAS RN: 7789-23-3\nSodium hydroxide; CAS RN: 1310-73-2",
                                  "intermediate_reactants_cas_rn": "acetic acid; CAS RN: 64-19-7\n1,1,2-trichloroethene; CAS RN: 79-01-6\n2-chloroacetic acid; CAS RN: 79-11-8\nmethanol; CAS RN: 630-08-0\nmethyl 2-chloroacetate; CAS RN: 96-34-4\nsodium 2-fluoroacetate; Sodium fluoroacetate; CAS RN: 62-74-8\nChlorine; CAS RN: 7782-50-5\nPotassium fluoride; CAS RN: 7789-23-3\nSodium hydroxide; CAS RN: 1310-73-2",
                                  "smilies_of_reactants": "",
                                  "solvent_and_reagents": "Chlorine; CAS RN: 7782-50-5\nPotassium fluoride; CAS RN: 7789-23-3\nSodium hydroxide; CAS RN: 1310-73-2",
                                  "patent_or_non_patent_references": "",
                                  "patent_type": "",
                                  "patent_link": "",
                                  "ip_legal_status": "(SYN$$kk$$)",
                                  "uniform_resource_locator": "",
                                  "digital_object_identifier": "",
                                  "company_name": "",
                                  "company_type": "",
                                  "country_of_company": "",
                                  "company_logo": "Process_patent.png",
                                  "description": "",
                                  "technical_field": "Fuorinationation/saponification\nEsterification\nAlpha chlorination",
                                  "route_type": "REPORTED ROUTE",
                                  "types_of_route": "REPORTED ROUTE",
                                  "present_invention_patent_disclosure": "",
                                  "route_of_synthesis": "sodium_fluoroacetate.png",
                                  "updation_date": "1970-01-01T00:00:00.000Z",
                                  "priority_date": "",
                                  "notes": "2-chloroacetic acid; CAS RN: 79-11-8\nmethyl 2-chloroacetate; CAS RN: 96-34-4\nsodium 2-fluoroacetate; Sodium fluoroacetate; CAS RN: 62-74-8",
                                  "remarks": "",
                                  "comments": "",
                                  "downloadable_docs": "",
                                  "dummy_1": "Dec_2023_1st_Batch",
                                  "dummy_2": "Agrochemical",
                                  "dummy_3": "",
                                  "dummy_4": "",
                                  "dummy_5": "",
                                  "dummy_6": "",
                                  "dummy_7": "",
                                  "dummy_8": "",
                                  "dummy_9": "",
                                  "dummy_10": "",
                                  "created_at": "2024-04-22T12:31:44.418Z",
                                  "id": "662658b6d181724dc7c9b4fa"
                                },
                                {
                                  "trrn": 3195,
                                  "cprn": null,
                                  "active_ingredient": "PYROQUILON (FUNGICIDE); BENZENE  (APP. COSMETIC AGENTS); DIMETHYLFORMAMIDE (N,N-DIMETHYLFORMAMIDE)  (APP. COSMETIC AGENTS); BENZENE  (APP. COSMETIC AGENTS);DIMETHYLFORMAMIDE (N,N-DIMETHYLFORMAMIDE)  (APP. COSMETIC AGENTS);ACETIC ACID  (APP. DYE);SODIUM ACETATE  (APP. DYE)",
                                  "active_ingredient_cas_rn": "57369-32-1",
                                  "field_of_application": "AGROCHEMICAL / COSMETIC CHEMICAL / SYNTHETIC DYE",
                                  "applications": "PYROQUILON (FUNGICIDE); BENZENE  (APP. COSMETIC AGENTS); DIMETHYLFORMAMIDE (N,N-DIMETHYLFORMAMIDE)  (APP. COSMETIC AGENTS); BENZENE  (APP. COSMETIC AGENTS);DIMETHYLFORMAMIDE (N,N-DIMETHYLFORMAMIDE)  (APP. COSMETIC AGENTS);ACETIC ACID  (APP. DYE);SODIUM ACETATE  (APP. DYE)",
                                  "reactants_cas_rn": "indoline; CAS RN: 496-15-1\n2-chloroacetyl chloride; CAS RN: 79-04-9\n2-chloro-1-(indolin-1-yl)ethanone; CAS RN: 17133-48-1\n5-chloro-1,2-dihydropyrrolo[3,2,1-ij]quinolin-4-one; PubChem CID: 13632560\n1,2,5,6-tetrahydropyrrolo[3,2,1-ij]quinolin-4-one; Pyroquilon; CAS RN: 57369-32-1\nTriethanolamine; CAS RN: 102-71-6\nBenzene; CAS RN: 71-43-2\nPhosphorus oxychloride; CAS RN: 10025-87-3\nDimethylformamide; CAS RN: 68-12-2\nHydrogen; CAS RN: 1333-74-0\nPalladium; CAS RN: 7440-05-3\nSodium acetate; CAS RN: 127-09-3\nAcetic acid; CAS RN: 64-19-7",
                                  "intermediate_reactants_cas_rn": "indoline; CAS RN: 496-15-1\n2-chloroacetyl chloride; CAS RN: 79-04-9\n2-chloro-1-(indolin-1-yl)ethanone; CAS RN: 17133-48-1\n5-chloro-1,2-dihydropyrrolo[3,2,1-ij]quinolin-4-one; PubChem CID: 13632560\n1,2,5,6-tetrahydropyrrolo[3,2,1-ij]quinolin-4-one; Pyroquilon; CAS RN: 57369-32-1\nTriethanolamine; CAS RN: 102-71-6\nBenzene; CAS RN: 71-43-2\nPhosphorus oxychloride; CAS RN: 10025-87-3\nDimethylformamide; CAS RN: 68-12-2\nHydrogen; CAS RN: 1333-74-0\nPalladium; CAS RN: 7440-05-3\nSodium acetate; CAS RN: 127-09-3\nAcetic acid; CAS RN: 64-19-7",
                                  "smilies_of_reactants": "",
                                  "solvent_and_reagents": "Triethanolamine; CAS RN: 102-71-6\nBenzene; CAS RN: 71-43-2\nPhosphorus oxychloride; CAS RN: 10025-87-3\nDimethylformamide; CAS RN: 68-12-2\nHydrogen; CAS RN: 1333-74-0\nPalladium; CAS RN: 7440-05-3\nSodium acetate; CAS RN: 127-09-3\nAcetic acid; CAS RN: 64-19-7",
                                  "patent_or_non_patent_references": "",
                                  "patent_type": "",
                                  "patent_link": "",
                                  "ip_legal_status": "(SYN$$kk$$)",
                                  "uniform_resource_locator": "",
                                  "digital_object_identifier": "",
                                  "company_name": "",
                                  "company_type": "",
                                  "country_of_company": "",
                                  "company_logo": "Process_patent.png",
                                  "description": "",
                                  "technical_field": "1. N-Acylation \n2. Cyclization \n3. Reduction",
                                  "route_type": "REPORTED ROUTE",
                                  "types_of_route": "REPORTED ROUTE",
                                  "present_invention_patent_disclosure": "",
                                  "route_of_synthesis": "61ROS03.png",
                                  "updation_date": "1970-01-01T00:00:00.000Z",
                                  "priority_date": "",
                                  "notes": "5-chloro-1,2-dihydropyrrolo[3,2,1-ij]quinolin-4-one; PubChem CID: 13632560\n1,2,5,6-tetrahydropyrrolo[3,2,1-ij]quinolin-4-one; Pyroquilon; CAS RN: 57369-32-1",
                                  "remarks": "",
                                  "comments": "",
                                  "downloadable_docs": "",
                                  "dummy_1": "Nov_2023_5th_Batch",
                                  "dummy_2": "Agrochemical",
                                  "dummy_3": "",
                                  "dummy_4": "",
                                  "dummy_5": "",
                                  "dummy_6": "",
                                  "dummy_7": "",
                                  "dummy_8": "",
                                  "dummy_9": "",
                                  "dummy_10": "",
                                  "created_at": "2024-04-22T12:32:36.003Z",
                                  "id": "662658e9d181724dc7c9bd8e"
                                }
                              ]
                            }
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/chemical-directory/filter-columns": {
      "get": {
        "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/chemical-directory/structure-filter-columns": {
      "get": {
        "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/chemical-directory/column-list": {
      "get": {
        "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/chemical-directory/search-specific": {
      "post": {
        "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/basic-product-info/column-list": {
      "get": {
        "summary": "Basic products all columns list",
        "description": "This API is used to display column list data.",
        "tags": [
          "Basic Product Info"
        ],
        "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": "ACTIVE_INGREDIENT",
                                "name": "ACTIVE INGREDIENT"
                              },
                              {
                                "value": "CHEMICAL_STRUCTURE",
                                "name": "CHEMICAL STRUCTURE"
                              },
                              {
                                "value": "API_AGROCHEMICAL",
                                "name": "API/AGROCHEMICAL"
                              },
                              {
                                "value": "IUPAC",
                                "name": "IUPAC"
                              },
                              {
                                "value": "CAS_RN",
                                "name": "CAS RN"
                              },
                              {
                                "value": "CAS_NAME",
                                "name": "CAS NAME"
                              },
                              {
                                "value": "PUBCHEM_ID",
                                "name": "PUBCHEM ID"
                              },
                              {
                                "value": "EC_NO",
                                "name": "EC. NO."
                              }
                            ]
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/basic-product-info/search-specific": {
      "post": {
        "summary": "Basic product search by GBRN",
        "description": "This API is used to show result of specific search.",
        "tags": [
          "Basic Product Info"
        ],
        "consumes": [
          "application/json"
        ],
        "produces": [
          "application/json"
        ],
        "requestBody": {
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "required": [
                  "keyword",
                  "page_no"
                ],
                "properties": {
                  "keyword": {
                    "type": "string",
                    "description": "Enter keyword.",
                    "example": "2500;2501"
                  },
                  "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": {
                              "basic_product_count": 2,
                              "basic_product_data": [
                                {
                                  "gbrn": "2500",
                                  "ACTIVE_INGREDIENT": "BROMOACETIC ACID",
                                  "CHEMICAL_STRUCTURE": "2500CS.png",
                                  "API_AGROCHEMICAL": "AGROCHEMICAL",
                                  "IUPAC": "2-bromoacetic acid",
                                  "CAS_RN": "79-08-3",
                                  "CAS_NAME": "",
                                  "PUBCHEM_ID": "6227",
                                  "EC_NO": "201-175-8",
                                  "ANATO_THERAP_CHEM_ATC_CLS_CODE": "",
                                  "UNIQUE_INGRE_IDENTI_UNII": "2B3HS32431",
                                  "CHEMICAL_CLASS": "",
                                  "NAME_OF_GENERIC_CHEM_CLASS": "",
                                  "MECHANISM_OF_ACTION_MOA": "*",
                                  "DEVELOPMENT_STAGE": "LAUNCHED",
                                  "SYNONYMSCOMMON_NAME": "1. BROMOACETIC ACID\n2. 2-Bromoacetic acid\n3. 79-08-3\n4. Monobromoacetic acid\n5. Bromoethanoic acid\n6. Acetic acid, bromo-\n7. To NTU\n8. Bromoacetate ion\n9. Acide bromacetique\n10. 2-Bromoacetyl Group\n11. 2-bromoethanoic acid\n12. Acetic acid, 2-bromo-\n13. Bromo-acetic acid\n14. Monobromessigsaeure\n15. Kyselina bromoctova\n16. alpha-Bromoacetic acid\n17. Caswell No. 112A\n18. .alpha.-Bromoacetic acid\n19. NSC 141\n20. Acide bromacetique [French]\n21. Kyselina bromoctova [Czech]\n22. Monobromessigsaeure [German]\n23. CCRIS 7886\n24. UNII-2B3HS32431\n25. Acetic acid, bromo-, (solution)\n26. alpha-Bromoethanoic acid\n27. Bromoacetic acid, solid\n28. EINECS 201-175-8\n29. UN1938\n30. EPA Pesticide Chemical Code 008702\n31. BRN 0506167\n32. CHEMBL60851\n33. AI3-15301\n34. KDPAWGWELVVRCH-UHFFFAOYSA-N\n35. MFCD00002678\n36. 2B3HS32431\n37. UN 1938\n38. Bromoacetic acid, 99%\n39. Bromoacetic acid, solution [UN1938] [Corrosive]\n40. 2-Bromoaceticacid\n41. C2H3BrO2\n42. bromacetic acid\n43. HSDB 7627\n44. bromo acetic acid\n45. monobromacetic acid\n46. sJPhLQbIKTp@\n47. BXA\n48. Carboxymethyl bromidd\n49. Carboxymethyl bromide\n50. 2-bromo acetic acid\n51. 2-bromo-acetic acid\n52. CH2BrCOOH\n53. 2-bromanylethanoic acid\n54. PubChem13144\n55. Bromoacetic acid solution\n56. Acetic acid, (solution)\n57. Bromoacetic acid, solution\n58. DSSTox_CID_1495\n59. .alpha.-Bromoethanoic acid\n60. D05DOM\n61. WLN: QV1E\n62. EC 201-175-8\n63. AC1L1M2L\n64. AC1Q74RH\n65. DSSTox_RID_76186\n66. DSSTox_GSID_21495\n67. SCHEMBL23032\n68. 4-02-00-00526 (Beilstein Handbook Reference)\n69. KSC377G2H\n70. ACMC-20977a\n71. BROMOACETIC ACID, PRACT\n72. NSC141\n73. DTXSID7021495\n74. CTK2H7323\n75. NSC-141\n76. MolPort-001-769-533\n77. ZINC3860231\n78. Tox21_200657\n79. ANW-13604\n80. BDBM50119693\n81. Bromoacetic acid, analytical standard\n82. LMFA01090074\n83. SBB053569\n84. STL481895\n85. AKOS000118919\n86. Bromoacetic acid, reagent grade, 97%\n87. DB02198\n88. LS-1770\n89. MCULE-1503716137\n90. RP20493\n91. RTR-025210\n92. TRA0101137\n93. CAS-79-08-3\n94. KS-00000V47\n95. NCGC00091467-01\n96. NCGC00091467-02\n97. NCGC00258211-01\n98. BC003721\n99. BC651357\n100. BP-20544\n101. KB-48463\n102. S664\n103. SC-18211\n104. Bromoacetic acid solution, 1.0 M in DMF\n105. Bromoacetic acid, purum, >=98.0% (T)\n106. AB0007487\n107. AB1000456\n108. Bromoacetic acid, ReagentPlus(R), >=99%\n109. DB-012701\n110. TR-025210\n111. 683-EP2289868A1\n112. 683-EP2289886A1\n113. 683-EP2308839A1\n114. 683-EP2308867A2\n115. 683-EP2308870A2\n116. 683-EP2308874A1\n117. 683-EP2311818A1\n118. B0531\n119. FT-0648951\n120. Bromoacetic acid, ReagentPlus(R), >=99.0%\n121. Bromoacetic acid, solid [UN1938] [Corrosive]\n122. Bromoacetic acid, solid [UN1938] [Corrosive]\n123. A839576\n124. Bromoacetic acid solution, 1 M in dichloromethane\n125. I04-0196\n126. J-519938\n127. F2191-0223\n128. InChI=1/C2H3BrO2/c3-1-2(4)5/h1H2,(H,4,5\n129. Z1270326274\n130. Bromoacetic acid 1000 microg/mL in Methyl-tert-butyl ether\n131. 418768-49-7\n132. 418768-50-0\n133. BRM\n134. Bromoacetic acid solution, certified reference material, 1000 mug/mL in methyl tert-butyl ether\n\n\nPubChem Substance and Compound databases - NCBI (U.S. National Library of Medicine) https: //pubchem.ncbi.nlm.nih.gov/",
                                  "TRADE_NAMEPROPRIETARY_NAME": "",
                                  "DESCRIPTION": "Bromoacetic Acid is a colorless crystals. Melting point 51°C. Density 1.93 g / cm3. Corrosive to metals and tissue. Poisonous by ingestion. Used to cause drop of citrus fruit in harvesting.",
                                  "YEAR_OF_DISCOVERY": "",
                                  "LAUNCHING_YEAR": "",
                                  "CANONICAL_SMILES": "C(C(=O)O)Br",
                                  "SMILES_CODE": "BrCC(=O)O",
                                  "INCHI": "InChI=1S/C2H3BrO2/c3-1-2(4)5/h1H2,(H,4,5)",
                                  "INCHIKEY": "KDPAWGWELVVRCH-UHFFFAOYSA-N",
                                  "SUMMARY_PHYSICOCHEM_PROP_COMP": "Molecular Weight: 138.95\nXLogP3: 0.4\nHydrogen Bond Donor Count: 1\nHydrogen Bond Acceptor Count: 2\nRotatable Bond Count: 1\nExact Mass: 137.93164\nMonoisotopic Mass: 137.93164\nTopological Polar Surface Area: 37.3 Å²\nHeavy Atom Count: 5\nFormal Charge: 0\nComplexity: 42.9\nIsotope Atom Count: 0\nDefined Atom Stereocenter Count: 0\nUndefined Atom Stereocenter Count: 0\nDefined Bond Stereocenter Count: 0\nUndefined Bond Stereocenter Count: 0\nCovalently-Bonded Unit Count: 1\nCompound Is Canonicalized: Yes",
                                  "SUMMARY_PHYSICOCHEM_PROP_EXPERI": "",
                                  "INDICATION": "",
                                  "USES": "",
                                  "HIST_DEV_LICN_COMM": "",
                                  "INVENT_INFO": "",
                                  "GENERIC_CONSTRAINING_DATE": "",
                                  "YEAR_WISE_OFF_PATENT_MOLECULES": "",
                                  "GENERIC_PROP_DEV_CADATE_WDRW": "",
                                  "EUROPE_SUP_PROT_CERTIFI_SPC": "",
                                  "OTHER_COUNTRIES_SUP_PROT_CERTIFI_SPC": "",
                                  "DATA_PROTECTION": "",
                                  "LITIGATION_OPP_IPR_MH_REEXAM": "",
                                  "EXCLUSIVITY_NEW_CHEMICAL_ENTITY": "",
                                  "ORPHAN_DRUG_EXCLUSIVITY_ODE": "",
                                  "PEDIATRIC_DRUG_EXCLUSIVITY_PDE": "",
                                  "NCE_MINUS_OR_QIDP_MINUS": "",
                                  "EUROPE_EXCLUSIVITY": "",
                                  "CANADA_EXCLUSIVITY": "",
                                  "OTHER_COUNTRIES_EXCLUSIVITIES": "",
                                  "INNOVATOR_ORIGINATOR": "",
                                  "INVENTOR_LOGO": "",
                                  "COMMENTRY": "",
                                  "NOTES": "",
                                  "REMARKS": "",
                                  "LITERATURE": "",
                                  "INFORMATION_SOURCES": "[1] Alan wood (http: //www.alanwood.net/pesticides/)\n[2] Pesticide Manual http: //tsime.uz.ac.zw/claroline/backends/download.php?url=L1BNMTYtc3VwcGxlbWVudGFyeS1CQ1BDLnBkZg%3D%3D&cidReq=MCP508)\n[3] HRAC / FRAC / IRAC (https: //www.hracglobal.com / https: //www.frac.info / https: //www.irac-online.org) \n[4] United States Environmental Protection Agency (US EPA) https: //www.epa.gov/\n[5] CIBRC (GOVERNMENT OF INDIA MINISTRY OF AGRICULTURE & FARMERS WELFARE) http: //ppqs.gov.in/divisions/cib-rc/news-update\n[6] PubChem Substance and Compound databases - NCBI (U.S. National Library of Medicine) https: //pubchem.ncbi.nlm.nih.gov/\n[7] UNITED STATES PATENT AND TRADEMARK OFFICE (uspto) https: //www.uspto.gov/\n[8] J-PlatPat : Japan platform for patent information https: //www.j-platpat.inpit.go.jp/\n[9] inPASS (Indian Patent Advanced Search System): Indian platform for patent information https: //ipindiaservices.gov.in/PublicSearch/\n[10] Pesticide Properties Data Base (PPDB) https: //sitem.herts.ac.uk/aeru/ppdb/en/atoz.htm\n[11] European chemical agency (ECHA) https: //echa.europa.eu/\n[12] Espacenet : European Patent Office platform for patent information https: //worldwide.espacenet.com/?locale=en_EP\n[13] Toxnet Toxicology data network https: //toxnet.nlm.nih.gov/cgi-bin/sis/search2/r?dbs+hsdb: @term+@rn+@rel+93-71-0",
                                  "PDF_MULTIPLE_PDF": "",
                                  "ORANGE_BOOK_PATENTS": "",
                                  "USDMF_HOLDER": "",
                                  "EP_DMF_HOLDER": "",
                                  "OTHER_DMF_HOLDER": "",
                                  "LINK_1": "",
                                  "LINK_2": "",
                                  "LINK_3": "",
                                  "LINK_4": "",
                                  "LINK_5": "",
                                  "LINK_6": "",
                                  "PRODUCT_CLASSIFICATION": "PESTICIDE",
                                  "PRODUCT_TYPE": "AGROCHEMICAL",
                                  "PESTICIDE_TYPE": "",
                                  "RELEATED_COMPOUNDS_AIS": "",
                                  "SUBSTANCE_ORIGIN": "",
                                  "LAUNCH_STATUS": "LAUNCHED",
                                  "ISO_STATUS": "",
                                  "US_EPA_CHEMICAL_CODE": "",
                                  "UN_NUMBER": "1938",
                                  "STRAIN_NO": "",
                                  "GOOGLEPATENTHYPERLINKOFPATENTINVENTINFO": "",
                                  "INVENT_INFO2": "",
                                  "INVENT_INFO3": "",
                                  "dummy_1": "",
                                  "dummy_2": "",
                                  "dummy_3": "",
                                  "dummy_4": "",
                                  "dummy_5": "",
                                  "dummy_6": "",
                                  "dummy_7": "",
                                  "dummy_8": "",
                                  "dummy_9": "",
                                  "dummy_10": "",
                                  "dummy_11": "",
                                  "dummy_12": "",
                                  "dummy_13": "",
                                  "dummy_14": "",
                                  "year_wise_iso": "",
                                  "company_registration_number": "",
                                  "developmental_code": "",
                                  "created_at": "2024-05-06T04:28:08.224Z",
                                  "id": "66385c5dc4d3281f5f43821a"
                                },
                                {
                                  "gbrn": "2501",
                                  "ACTIVE_INGREDIENT": "N,N-DIMETHYLFORMAMIDE",
                                  "CHEMICAL_STRUCTURE": "2501CS.png",
                                  "API_AGROCHEMICAL": "AGROCHEMICAL",
                                  "IUPAC": "N,N-dimethylformamide",
                                  "CAS_RN": "68-12-2",
                                  "CAS_NAME": "",
                                  "PUBCHEM_ID": "6228",
                                  "EC_NO": "200-679-5",
                                  "ANATO_THERAP_CHEM_ATC_CLS_CODE": "",
                                  "UNIQUE_INGRE_IDENTI_UNII": "8696NH0Y2X",
                                  "CHEMICAL_CLASS": "",
                                  "NAME_OF_GENERIC_CHEM_CLASS": "",
                                  "MECHANISM_OF_ACTION_MOA": "*",
                                  "DEVELOPMENT_STAGE": "LAUNCHED",
                                  "SYNONYMSCOMMON_NAME": "1. N,N-DIMETHYLFORMAMIDE\n2. Dimethylformamide\n3. 68-12-2\n4. N,N-Dimethylmethanamide\n5. Dimethyl formamide\n6. N-Formyldimethylamine\n7. Formamide, N,N-dimethyl-\n8. DMF\n9. Dimethylformamid\n10. Dimetilformamide\n11. Dwumetyloformamid\n12. DMFA\n13. Formyldimethylamine\n14. N,N-Dimethyl formamide\n15. Dimethylforamide\n16. Dimetylformamidu\n17. DMF (amide)\n18. NCI-C60913\n19. n,n,dimethylformamide\n20. N,N-Dimethylformamid\n21. Dimethylamid kyseliny mravenci\n22. Caswell No. 366A\n23. Dimetylformamidu [Czech]\n24. Dimethylformamid [German]\n25. Dimetilformamide [Italian]\n26. Dwumetyloformamid [Polish]\n27. dimethyl-Formamide\n28. HSDB 78\n29. U-4224\n30. UNII-8696NH0Y2X\n31. CCRIS 1638\n32. N,N-Dimetilformamida [Spanish]\n33. n,n-dimethyl-Formamide\n34. N, N-dimethylformamide\n35. N,N-Dimethylformamide\n36. N,N- Dimethylformamide\n37. N,N-Dimethylformaldehyde\n38. NSC 5356\n39. Formic acid, amide, N,N-dimethyl-\n40. EINECS 200-679-5\n41. MFCD00003284\n42. UN2265\n43. Dimethylamid kyseliny mravenci [Czech]\n44. EPA Pesticide Chemical Code 366200\n45. AI3-03311\n46. CHEBI: 17741\n47. NSC5356\n48. ZMXDDKWLCZADIW-UHFFFAOYSA-N\n49. 8696NH0Y2X\n50. NSC-5356\n51. DSSTox_CID_515\n52. DSSTox_RID_75636\n53. DSSTox_GSID_20515\n54. N,N Dimethylformamide\n55. CAS-68-12-2\n56. N,N-Dimethylformamide, 99+%, extra pure\n57. N,N-Dimetilformamida\n58. N,N-Dimethylformamide, 99.5%, for analysis\n59. N,N-Dimethylformamide, for HPLC, >=99.9%\n60. N,N-Dimethylformamide, 99.8+%, ACS reagent\n61. N,N-Dimethylformamide, 99.8%, for spectroscopy\n62. N,N-Dimethylformamide, ACS reagent, >=99.8%\n63. N, N-dimethyl formamide\n64. Dimethylformamide, N,N-\n65. N,N-Dimethylformamide, 99.8%, for peptide synthesis\n66. N,N-Dimethylformamide, 99.8+%, for spectroscopy ACS\n67. N,N-Dimethylformamide, 99.8%, Extra Dry, AcroSeal(R)\n68. dimethlforamide\n69. dimethlformamide\n70. dimethyformamide\n71. dimetylformamide\n72. N,N-Dimethylformamide, 99.9%, for biochemistry, AcroSeal(R)\n73. dimehtylformamide\n74. dimethlyformamide\n75. dimethyiformamide\n76. dimethy formamide\n77. dimethy1formamide\n78. dimethyl foramide\n79. dimethyl formamid\n80. dimehtylformarnide\n81. dimethylformarnide\n82. dimethylforrnamide\n83. dirnethylformamide\n84. N,N-Dimethylformamide, 99.8%, Extra Dry over Molecular Sieve, AcroSeal(R)\n85. di-methylformamide\n86. dimethylf ormamide\n87. dimethylform amide\n88. dimethylform-amide\n89. dimethylformamid e\n90. dimethylformamide-\n91. dirnethylformarnide\n92. N,N-Dimethylformamide, 99.8%, for molecular biology, DNAse, RNAse and Protease free\n93. dimethyl form-amide\n94. dimethyl- formamide\n95. dimethylfor- mamide\n96. N,n-dimethylforamide\n97. formamide, dimethyl-\n98. N,N-dimethlformamide\n99. N,N-dimethyformamide\n100. N,N-dimetylformamide\n101. n,n.dimethylformamide\n102. N,Ndimethylformamide\n103. N,N-dimethvlformamide\n104. N.N-dimethylformamide\n105. HCONMe2\n106. Formamide,N-dimethyl-\n107. N, N-dimethylforamide\n108. N,N-dimethylforamide\n109. N,N-dimethl formamide\n110. N,N-dimethy formamide\n111. N,N-dimethyl foramide\n112. N,N-dimethyl formamid\n113. N,N-dimethylformarnide\n114. N,N-dimethylforrnamide\n115. N,N-dimetyl formamide\n116. N,N-dirnethylformamide\n117. n,n,-dimethylformamide\n118. Dimethylformamide, DMF\n119. DMF, Dimethylformamide\n120. N, N dimethylformamide\n121. N,N -dimethylformamide\n122. N,N dimethyl formamide\n123. N,N dimethylformamide\n124. N,N-di methylformamide\n125. N,N-di-methylformamide\n126. N,N-dime-thylformamide\n127. N,N-dimehtyl formamide\n128. N,N-dimethylfor mamide\n129. N,N-dimethylfor-mamide\n130. N,N-dimethylform-amide\n131. N,N-dimethylformamide-\n132. PubChem23341\n133. N,N-di-methylforrnamide\n134. Dimethyl Fornamide,(S)\n135. DMF (dimethylformamide)\n136. n,n,-dimethyl formamide\n137. N, N-dimethylformamide\n138. N, N- dimethylformamide\n139. N, N-di-methylformamide\n140. N, N-dimethyl-formamide\n141. N,N- dimethyl formamide\n142. N,N-di-methyl formamide\n143. N,N-di-methyl-formamide\n144. N,N-dimethyl -formamide\n145. N,N-dimethyl- formamide\n146. N, N-dimethylformaldehyde\n147. bmse000709\n148. D0E1KX\n149. EC 200-679-5\n150. AC1L1M2O\n151. D.M.F\n152. HCON(CH3)2\n153. Dynasolve 100 (Salt/Mix)\n154. KSC352S1B\n155. BIDD: ER0600\n156. WLN: VHN1&1\n157. ACMC-20976q\n158. AC1Q3W44\n159. CHEMBL268291\n160. D.M.F.\n161. DTXSID6020515\n162. CTK2F2910\n163. KS-00000UCQ\n164. N,N-Dimethylformamide, 99.8%\n165. N,N-Dimethylformamide, anhydrous\n166. MolPort-000-871-967\n167. N,N-Dimethylformamide HPLC grade\n168. N,N-Dimethylformamide, ACS grade\n169. N,N-DIMETHYLFORMAMIDE, ACS\n170. ZINC901648\n171. Dimethylformamide Reagent Grade ACS\n172. N,N-Dimethylformamide, HPLC Grade\n173. Tox21_201259\n174. Tox21_300039\n175. ANW-13584\n176. STL264197\n177. N,N-Dimethylformamide, LR, >=99%\n178. AKOS000121096\n179. FORMIN ACID,AMIDE,N,N-DIMETHYL\n180. DB01844\n181. EBD2222506\n182. LS-1577\n183. MCULE-6290117712\n184. RL04602\n185. RP18321\n186. RTR-037473\n187. UN 2265\n188. N,N-Dimethylformamide, p.a., 99.8%\n189. N,N-Dimethylformamide, AR, >=99.5%\n190. NCGC00090785-01\n191. NCGC00090785-02\n192. NCGC00090785-03\n193. NCGC00090785-04\n194. NCGC00090785-05\n195. NCGC00254093-01\n196. NCGC00258811-01\n197. AN-23775\n198. BC206707\n199. CJ-04552\n200. K124\n201. SC-18318\n202. ZB015299\n203. Dimethylformamide, n,n- Reagent Grade ACS\n204. N,N-Dimethylformamide, analytical standard\n205. N,N-Dimethylformamide, anhydrous, 99.8%\n206. AB1007264\n207. DMF-d7; Heptadeutero-N,N-dimethylformamide\n208. N,N-Dimethylformamide, 99.5%, for HPLC\n209. TR-037473\n210. 191-EP1441224A2\n211. 191-EP2269610A2\n212. 191-EP2269975A2\n213. 191-EP2269977A2\n214. 191-EP2269978A2\n215. 191-EP2269979A1\n216. 191-EP2269985A2\n217. 191-EP2269988A2\n218. 191-EP2269989A1\n219. 191-EP2269990A1\n220. 191-EP2269991A2\n221. 191-EP2269992A1\n222. 191-EP2269993A1\n223. 191-EP2269994A1\n224. 191-EP2269997A2\n225. 191-EP2270001A1\n226. 191-EP2270003A1\n227. 191-EP2270004A1\n228. 191-EP2270005A1\n229. 191-EP2270006A1\n230. 191-EP2270008A1\n231. 191-EP2270009A1\n232. 191-EP2270010A1\n233. 191-EP2270011A1\n234. 191-EP2270012A1\n235. 191-EP2270013A1\n236. 191-EP2270014A1\n237. 191-EP2270015A1\n238. 191-EP2270018A1\n239. 191-EP2272509A1\n240. 191-EP2272516A2\n241. 191-EP2272517A1\n242. 191-EP2272537A2\n243. 191-EP2272813A2\n244. 191-EP2272822A1\n245. 191-EP2272825A2\n246. 191-EP2272826A1\n247. 191-EP2272827A1\n248. 191-EP2272828A1\n249. 191-EP2272832A1\n250. 191-EP2272834A1\n251. 191-EP2272835A1\n252. 191-EP2272838A1\n253. 191-EP2272839A1\n254. 191-EP2272840A1\n255. 191-EP2272841A1\n256. 191-EP2272843A1\n257. 191-EP2272845A2\n258. 191-EP2272848A1\n259. 191-EP2272972A1\n260. 191-EP2272973A1\n261. 191-EP2274983A1\n262. 191-EP2275102A1\n263. 191-EP2275105A1\n264. 191-EP2275401A1\n265. 191-EP2275409A1\n266. 191-EP2275410A1\n267. 191-EP2275411A2\n268. 191-EP2275412A1\n269. 191-EP2275413A1\n270. 191-EP2275414A1\n271. 191-EP2275415A2\n272. 191-EP2275416A1\n273. 191-EP2275420A1\n274. 191-EP2275422A1\n275. 191-EP2275423A1\n276. 191-EP2275425A1\n277. 191-EP2275469A1\n278. 191-EP2277848A1\n279. 191-EP2277858A1\n280. 191-EP2277861A1\n281. 191-EP2277865A1\n282. 191-EP2277866A1\n283. 191-EP2277867A2\n284. 191-EP2277868A1\n285. 191-EP2277869A1\n286. 191-EP2277870A1\n287. 191-EP2277872A1\n288. 191-EP2277874A1\n289. 191-EP2277875A2\n290. 191-EP2277877A1\n291. 191-EP2277878A1\n292. 191-EP2277882A1\n293. 191-EP2277945A1\n294. 191-EP2279741A2\n295. 191-EP2279750A1\n296. 191-EP2280001A1\n297. 191-EP2280003A2\n298. 191-EP2280006A1\n299. 191-EP2280008A2\n300. 191-EP2280009A1\n301. 191-EP2280010A2\n302. 191-EP2280012A2\n303. 191-EP2280014A2\n304. 191-EP2281563A1\n305. 191-EP2281810A1\n306. 191-EP2281812A1\n307. 191-EP2281813A1\n308. 191-EP2281815A1\n309. 191-EP2281819A1\n310. 191-EP2281822A1\n311. 191-EP2281823A2\n312. 191-EP2281861A2\n313. 191-EP2284148A1\n314. 191-EP2284149A1\n315. 191-EP2284150A2\n316. 191-EP2284151A2\n317. 191-EP2284152A2\n318. 191-EP2284153A2\n319. 191-EP2284154A1\n320. 191-EP2284155A2\n321. 191-EP2284156A2\n322. 191-EP2284157A1\n323. 191-EP2284160A1\n324. 191-EP2284164A2\n325. 191-EP2284166A1\n326. 191-EP2284169A1\n327. 191-EP2284171A1\n328. 191-EP2284172A1\n329. 191-EP2284174A1\n330. 191-EP2284178A2\n331. 191-EP2284179A2\n332. 191-EP2286811A1\n333. 191-EP2286812A1\n334. 191-EP2286915A2\n335. 191-EP2287140A2\n336. 191-EP2287148A2\n337. 191-EP2287150A2\n338. 191-EP2287156A1\n339. 191-EP2287161A1\n340. 191-EP2287162A1\n341. 191-EP2287164A1\n342. 191-EP2287165A2\n343. 191-EP2287166A2\n344. 191-EP2287167A1\n345. 191-EP2287168A2\n346. 191-EP2289483A1\n347. 191-EP2289510A1\n348. 191-EP2289871A1\n349. 191-EP2289876A1\n350. 191-EP2289881A1\n351. 191-EP2289883A1\n352. 191-EP2289886A1\n353. 191-EP2289890A1\n354. 191-EP2289891A2\n355. 191-EP2289892A1\n356. 191-EP2289893A1\n357. 191-EP2289894A2\n358. 191-EP2292088A1\n359. 191-EP2292228A1\n360. 191-EP2292589A1\n361. 191-EP2292590A2\n362. 191-EP2292593A2\n363. 191-EP2292595A1\n364. 191-EP2292597A1\n365. 191-EP2292606A1\n366. 191-EP2292611A1\n367. 191-EP2292613A1\n368. 191-EP2292615A1\n369. 191-EP2292617A1\n370. 191-EP2292619A1\n371. 191-EP2292620A2\n372. 191-EP2292621A1\n373. 191-EP2292625A1\n374. 191-EP2292628A2\n375. 191-EP2295053A1\n376. 191-EP2295401A2\n377. 191-EP2295402A2\n378. 191-EP2295406A1\n379. 191-EP2295407A1\n380. 191-EP2295409A1\n381. 191-EP2295410A1\n382. 191-EP2295411A1\n383. 191-EP2295412A1\n384. 191-EP2295413A1\n385. 191-EP2295414A1\n386. 191-EP2295415A1\n387. 191-EP2295416A2\n388. 191-EP2295417A1\n389. 191-EP2295418A1\n390. 191-EP2295419A2\n391. 191-EP2295426A1\n392. 191-EP2295427A1\n393. 191-EP2295428A2\n394. 191-EP2295429A1\n395. 191-EP2295432A1\n396. 191-EP2295433A2\n397. 191-EP2295434A2\n398. 191-EP2295435A1\n399. 191-EP2295437A1\n400. 191-EP2295439A1\n401. 191-EP2295503A1\n402. 191-EP2298312A1\n403. 191-EP2298728A1\n404. 191-EP2298731A1\n405. 191-EP2298734A2\n406. 191-EP2298735A1\n407. 191-EP2298736A1\n408. 191-EP2298742A1\n409. 191-EP2298743A1\n410. 191-EP2298744A2\n411. 191-EP2298745A1\n412. 191-EP2298747A1\n413. 191-EP2298748A2\n414. 191-EP2298749A1\n415. 191-EP2298750A1\n416. 191-EP2298755A1\n417. 191-EP2298758A1\n418. 191-EP2298759A1\n419. 191-EP2298761A1\n420. 191-EP2298762A2\n421. 191-EP2298764A1\n422. 191-EP2298765A1\n423. 191-EP2298768A1\n424. 191-EP2298770A1\n425. 191-EP2298774A1\n426. 191-EP2298775A1\n427. 191-EP2298776A1\n428. 191-EP2298779A1\n429. 191-EP2298780A1\n430. 191-EP2298783A1\n431. 191-EP2301534A1\n432. 191-EP2301536A1\n433. 191-EP2301538A1\n434. 191-EP2301544A1\n435. 191-EP2301909A1\n436. 191-EP2301912A2\n437. 191-EP2301916A2\n438. 191-EP2301918A1\n439. 191-EP2301921A1\n440. 191-EP2301922A1\n441. 191-EP2301923A1\n442. 191-EP2301925A1\n443. 191-EP2301926A1\n444. 191-EP2301928A1\n445. 191-EP2301929A1\n446. 191-EP2301930A1\n447. 191-EP2301931A1\n448. 191-EP2301932A1\n449. 191-EP2301933A1\n450. 191-EP2301935A1\n451. 191-EP2301936A1\n452. 191-EP2301937A1\n453. 191-EP2301939A1\n454. 191-EP2301940A1\n455. 191-EP2301983A1\n456. 191-EP2305250A1\n457. 191-EP2305254A1\n458. 191-EP2305627A1\n459. 191-EP2305636A1\n460. 191-EP2305637A2\n461. 191-EP2305640A2\n462. 191-EP2305641A1\n463. 191-EP2305643A1\n464. 191-EP2305644A1\n465. 191-EP2305647A1\n466. 191-EP2305648A1\n467. 191-EP2305652A2\n468. 191-EP2305658A1\n469. 191-EP2305659A1\n470. 191-EP2305660A1\n471. 191-EP2305664A1\n472. 191-EP2305666A1\n473. 191-EP2305667A2\n474. 191-EP2305668A1\n475. 191-EP2305671A1\n476. 191-EP2305672A1\n477. 191-EP2305674A1\n478. 191-EP2305675A1\n479. 191-EP2305676A1\n480. 191-EP2305677A1\n481. 191-EP2305679A1\n482. 191-EP2305681A1\n483. 191-EP2305682A1\n484. 191-EP2305684A1\n485. 191-EP2305687A1\n486. 191-EP2305688A1\n487. 191-EP2305689A1\n488. 191-EP2305695A2\n489. 191-EP2305696A2\n490. 191-EP2305697A2\n491. 191-EP2305698A2\n492. 191-EP2305769A2\n493. 191-EP2305808A1\n494. 191-EP2308479A2\n495. 191-EP2308812A2\n496. 191-EP2308832A1\n497. 191-EP2308833A2\n498. 191-EP2308838A1\n499. 191-EP2308840A1\n500. 191-EP2308841A2\n501. 191-EP2308844A2\n502. 191-EP2308845A2\n503. 191-EP2308846A2\n504. 191-EP2308848A1\n505. 191-EP2308849A1\n506. 191-EP2308851A1\n507. 191-EP2308855A1\n508. 191-EP2308857A1\n509. 191-EP2308861A1\n510. 191-EP2308866A1\n511. 191-EP2308867A2\n512. 191-EP2308869A1\n513. 191-EP2308870A2\n514. 191-EP2308872A1\n515. 191-EP2308873A1\n516. 191-EP2308874A1\n517. 191-EP2308875A1\n518. 191-EP2308876A1\n519. 191-EP2308879A1\n520. 191-EP2308880A1\n521. 191-EP2308882A1\n522. 191-EP2308883A1\n523. 191-EP2308960A1\n524. 191-EP2311451A1\n525. 191-EP2311455A1\n526. 191-EP2311464A1\n527. 191-EP2311494A1\n528. 191-EP2311796A1\n529. 191-EP2311797A1\n530. 191-EP2311798A1\n531. 191-EP2311799A1\n532. 191-EP2311805A1\n533. 191-EP2311806A2\n534. 191-EP2311807A1\n535. 191-EP2311808A1\n536. 191-EP2311810A1\n537. 191-EP2311815A1\n538. 191-EP2311818A1\n539. 191-EP2311824A1\n540. 191-EP2311825A1\n541. 191-EP2311826A2\n542. 191-EP2311827A1\n543. 191-EP2311829A1\n544. 191-EP2311830A1\n545. 191-EP2311831A1\n546. 191-EP2311837A1\n547. 191-EP2311838A1\n548. 191-EP2311840A1\n549. 191-EP2311842A2\n550. 191-EP2311850A1\n551. 191-EP2314295A1\n552. 191-EP2314575A1\n553. 191-EP2314576A1\n554. 191-EP2314577A1\n555. 191-EP2314580A1\n556. 191-EP2314581A1\n557. 191-EP2314582A1\n558. 191-EP2314583A1\n559. 191-EP2314584A1\n560. 191-EP2314586A1\n561. 191-EP2314590A1\n562. 191-EP2314593A1\n563. 191-EP2315303A1\n564. 191-EP2315502A1\n565. 191-EP2316450A1\n566. 191-EP2316452A1\n567. 191-EP2316457A1\n568. 191-EP2316458A1\n569. 191-EP2316470A2\n570. 191-EP2316824A1\n571. 191-EP2316825A1\n572. 191-EP2316827A1\n573. 191-EP2316828A1\n574. 191-EP2316829A1\n575. 191-EP2316830A2\n576. 191-EP2316831A1\n577. 191-EP2316832A1\n578. 191-EP2316833A1\n579. 191-EP2316834A1\n580. 191-EP2316835A1\n581. 191-EP2316836A1\n582. 191-EP2316905A1\n583. 191-EP2316906A2\n584. 191-EP2371797A1\n585. 191-EP2371798A1\n586. 191-EP2371800A1\n587. 191-EP2371804A1\n588. 191-EP2371808A1\n589. 191-EP2371812A1\n590. 191-EP2371814A1\n591. 191-EP2374454A1\n592. 191-EP2374790A1\n593. 191-EP2374791A1\n594. 191-EP2374895A1\n595. 191-EP2380873A1\n596. 192-EP2275418A1\n597. 192-EP2275420A1\n598. 192-EP2277565A2\n599. 192-EP2277566A2\n600. 192-EP2277567A1\n601. 192-EP2277568A2\n602. 192-EP2277569A2\n603. 192-EP2277570A2\n604. 192-EP2277875A2\n605. 192-EP2277945A1\n606. 192-EP2279741A2\n607. 192-EP2280008A2\n608. 192-EP2280012A2\n609. 192-EP2281815A1\n610. 192-EP2284172A1\n611. 192-EP2286811A1\n612. 192-EP2289894A2\n613. 192-EP2292280A1\n614. 192-EP2292600A1\n615. 192-EP2292624A1\n616. 192-EP2292628A2\n617. 192-EP2295055A2\n618. 192-EP2295408A1\n619. 192-EP2295416A2\n620. 192-EP2295426A1\n621. 192-EP2295427A1\n622. 192-EP2295437A1\n623. 192-EP2298738A1\n624. 192-EP2298743A1\n625. 192-EP2298748A2\n626. 192-EP2298770A1\n627. 192-EP2298775A1\n628. 192-EP2298776A1\n629. 192-EP2301911A1\n630. 192-EP2301924A1\n631. 192-EP2301926A1\n632. 192-EP2305250A1\n633. 192-EP2305642A2\n634. 192-EP2305658A1\n635. 192-EP2305667A2\n636. 192-EP2308479A2\n637. 192-EP2308833A2\n638. 192-EP2308842A1\n639. 192-EP2308874A1\n640. 192-EP2311453A1\n641. 192-EP2311815A1\n642. 192-EP2311818A1\n643. 192-EP2311820A1\n644. 192-EP2314295A1\n645. 192-EP2314581A1\n646. 192-EP2380874A2\n647. D0722\n648. D0939\n649. FT-0629532\n650. N,N-Dimethylformamide, anhydrous, amine free\n651. N,N-Dimethylformamide, for HPLC, >=99.5%\n652. C03134\n653. 14869-EP2272846A1\n654. 14869-EP2277868A1\n655. 14869-EP2277869A1\n656. 14869-EP2277870A1\n657. 14869-EP2284178A2\n658. 14869-EP2284179A2\n659. 14869-EP2287164A1\n660. 14869-EP2292608A1\n661. 14869-EP2298305A1\n662. 14869-EP2305033A1\n663. 14869-EP2308866A1\n664. 14869-EP2308878A2\n665. 14869-EP2314580A1\n666. 14869-EP2316830A2\n667. 70936-EP2269990A1\n668. 70936-EP2277945A1\n669. 70936-EP2281815A1\n670. 70936-EP2295425A1\n671. 70936-EP2295426A1\n672. 70936-EP2295427A1\n673. 70936-EP2298743A1\n674. 70936-EP2308833A2\n675. 70936-EP2374788A1\n676. N,N-Dimethylformamide, AldraSORB(TM), 99.8%\n677. N,N-Dimethylformamide, ReagentPlus(R), >=99%\n678. 300076X\n679. A836012\n680. N,N-Dimethylformamide, biotech. grade, >=99.9%\n681. I14-0843\n682. InChI=1/C3H7NO/c1-4(2)3-5/h3H,1-2H\n683. N,N-Dimethylformamide [UN2265] [Flammable liquid]\n684. N,N-Dimethylformamide, p.a., ACS reagent, 99.8%\n685. N,N-Dimethylformamide, SAJ first grade, >=99.0%\n686. N,N-Dimethylformamide [UN2265] [Flammable liquid]\n687. N,N-Dimethylformamide, anhydrous, ZerO2(TM), 99.8%\n688. N,N-Dimethylformamide, for molecular biology, >=99%\n689. N,N-Dimethylformamide, JIS special grade, >=99.5%\n690. N,N-Dimethylformamide, UV HPLC spectroscopic, 99.7%\n691. N,N-Dimethylformamide, ACS spectrophotometric grade, >=99.8%\n692. N,N-Dimethylformamide, B&J Brand (product of Burdick & Jackson)\n693. N,N-Dimethylformamide, Vetec(TM) reagent grade, anhydrous, >=99.8%\n694. Dimethylformamide, Pharmaceutical Secondary Standard; Certified Reference Material\n695. N,N-Dimethylformamide, 99.8%, Extra Dry, AcroSeal(R), package of 4x25ML bottles\n696. N,N-Dimethylformamide, p.a., ACS reagent, reag. ISO, reag. Ph. Eur., 99.8%\n697. N,N-Dimethylformamide, puriss. p.a., ACS reagent, reag. Ph. Eur., >=99.8% (GC)\n698. 114057-15-7\n699. 15175-63-0\n700. 15175-77-6\n701. 33513-42-7\n702. N,N-Dimethylformamide, suitable for neutral marker for measuring electroosmotic flow (EOF), ~99%\n\n\nPubChem Substance and Compound databases - NCBI (U.S. National Library of Medicine) https: //pubchem.ncbi.nlm.nih.gov/",
                                  "TRADE_NAMEPROPRIETARY_NAME": "",
                                  "DESCRIPTION": "N,N-Dimethylformamide is a formamide in which the amino hydrogens are replaced by methyl groups. N, N-Dimethylformamide (DMF) is a clear liquid that has been widely used in industries as a solvent, an additive, or an intermediate because of its extensive miscibility with water and most common organic solvents. Its health effects include hepatotoxicity and male reproductoxicity, possibly linked with mitochondrial DNA (mtDNA) alterations including mtDNA common deletion (delta-mtDNA4977) and mtDNA copy number; during the biotransformation of DMF in the body, free radicals are formed, including hydroxyl radicals. The world-wide consumption of DMF in 2001 was approximately 285, 000 metric tonnes and most of that was used as an industrial solvent. Overexposure to DMF could result in hepatotoxicity, alcohol intolerance, possible embryotoxicity and teratogenicity in humans and animals, and decline of human sperm motility. Based on its wide application and a wide range of toxic effects, DMF has been selected as one of the four priority compounds for human field studies by the National Toxicology Program (NTP) of the US National Institute of Environmental Health Sciences (NIEHS). The current permissible exposure limit for DMF in the working environment is 10 ppm in both USA and Taiwan. The concentrations of two major DMF metabolites in urine, N-methylformamide (U-NMF) of 15 mg/L and N-acetyl-S-(N-methylcarbamoyl) cysteine (U-AMCC) of 40 mg/L, were recommended as the biological exposure indices (BEIs) by the American Conference of Governmental Industrial Hygienists for DMF exposure in workplace. Dimethylformamide is used as an industrial solvent and in the production of fibers, films, and surface coatings. Acute (short-term) exposure to dimethylformamide has been observed to damage the liver in animals and in humans. Symptoms of acute exposure in humans include abdominal pain, nausea, vomiting, jaundice, alcohol intolerance, and rashes. Chronic (long-term) occupational exposure to dimethylformamide by inhalation has resulted in effects on the liver and digestive disturbances in workers. Human studies suggested a possible association between dimethylformamide exposure and testicular cancer, but further studies failed to confirm this relationship. EPA has not classified dimethylformamide with respect to its carcinogenicity.",
                                  "YEAR_OF_DISCOVERY": "",
                                  "LAUNCHING_YEAR": "",
                                  "CANONICAL_SMILES": "CN(C)C=O",
                                  "SMILES_CODE": "CN(C=O)C",
                                  "INCHI": "InChI=1S/C3H7NO/c1-4(2)3-5/h3H,1-2H3",
                                  "INCHIKEY": "ZMXDDKWLCZADIW-UHFFFAOYSA-N",
                                  "SUMMARY_PHYSICOCHEM_PROP_COMP": "Molecular Weight: 73.09\nXLogP3: -1\nHydrogen Bond Donor Count: 0\nHydrogen Bond Acceptor Count: 1\nRotatable Bond Count: 0\nExact Mass: 73.052763847\nMonoisotopic Mass: 73.052763847\nTopological Polar Surface Area: 20.3 Å²\nHeavy Atom Count: 5\nFormal Charge: 0\nComplexity: 33.9\nIsotope Atom Count: 0\nDefined Atom Stereocenter Count: 0\nUndefined Atom Stereocenter Count: 0\nDefined Bond Stereocenter Count: 0\nUndefined Bond Stereocenter Count: 0\nCovalently-Bonded Unit Count: 1\nCompound Is Canonicalized: Yes",
                                  "SUMMARY_PHYSICOCHEM_PROP_EXPERI": "",
                                  "INDICATION": "",
                                  "USES": "",
                                  "HIST_DEV_LICN_COMM": "",
                                  "INVENT_INFO": "",
                                  "GENERIC_CONSTRAINING_DATE": "",
                                  "YEAR_WISE_OFF_PATENT_MOLECULES": "",
                                  "GENERIC_PROP_DEV_CADATE_WDRW": "",
                                  "EUROPE_SUP_PROT_CERTIFI_SPC": "",
                                  "OTHER_COUNTRIES_SUP_PROT_CERTIFI_SPC": "",
                                  "DATA_PROTECTION": "",
                                  "LITIGATION_OPP_IPR_MH_REEXAM": "",
                                  "EXCLUSIVITY_NEW_CHEMICAL_ENTITY": "",
                                  "ORPHAN_DRUG_EXCLUSIVITY_ODE": "",
                                  "PEDIATRIC_DRUG_EXCLUSIVITY_PDE": "",
                                  "NCE_MINUS_OR_QIDP_MINUS": "",
                                  "EUROPE_EXCLUSIVITY": "",
                                  "CANADA_EXCLUSIVITY": "",
                                  "OTHER_COUNTRIES_EXCLUSIVITIES": "",
                                  "INNOVATOR_ORIGINATOR": "",
                                  "INVENTOR_LOGO": "",
                                  "COMMENTRY": "",
                                  "NOTES": "",
                                  "REMARKS": "",
                                  "LITERATURE": "",
                                  "INFORMATION_SOURCES": "[1] Alan wood (http: //www.alanwood.net/pesticides/)\n[2] Pesticide Manual http: //tsime.uz.ac.zw/claroline/backends/download.php?url=L1BNMTYtc3VwcGxlbWVudGFyeS1CQ1BDLnBkZg%3D%3D&cidReq=MCP508)\n[3] HRAC / FRAC / IRAC (https: //www.hracglobal.com / https: //www.frac.info / https: //www.irac-online.org) \n[4] United States Environmental Protection Agency (US EPA) https: //www.epa.gov/\n[5] CIBRC (GOVERNMENT OF INDIA MINISTRY OF AGRICULTURE & FARMERS WELFARE) http: //ppqs.gov.in/divisions/cib-rc/news-update\n[6] PubChem Substance and Compound databases - NCBI (U.S. National Library of Medicine) https: //pubchem.ncbi.nlm.nih.gov/\n[7] UNITED STATES PATENT AND TRADEMARK OFFICE (uspto) https: //www.uspto.gov/\n[8] J-PlatPat : Japan platform for patent information https: //www.j-platpat.inpit.go.jp/\n[9] inPASS (Indian Patent Advanced Search System): Indian platform for patent information https: //ipindiaservices.gov.in/PublicSearch/\n[10] Pesticide Properties Data Base (PPDB) https: //sitem.herts.ac.uk/aeru/ppdb/en/atoz.htm\n[11] European chemical agency (ECHA) https: //echa.europa.eu/\n[12] Espacenet : European Patent Office platform for patent information https: //worldwide.espacenet.com/?locale=en_EP\n[13] Toxnet Toxicology data network https: //toxnet.nlm.nih.gov/cgi-bin/sis/search2/r?dbs+hsdb: @term+@rn+@rel+93-71-0",
                                  "PDF_MULTIPLE_PDF": "",
                                  "ORANGE_BOOK_PATENTS": "",
                                  "USDMF_HOLDER": "",
                                  "EP_DMF_HOLDER": "",
                                  "OTHER_DMF_HOLDER": "",
                                  "LINK_1": "",
                                  "LINK_2": "",
                                  "LINK_3": "",
                                  "LINK_4": "",
                                  "LINK_5": "",
                                  "LINK_6": "",
                                  "PRODUCT_CLASSIFICATION": "PESTICIDE",
                                  "PRODUCT_TYPE": "AGROCHEMICAL",
                                  "PESTICIDE_TYPE": "",
                                  "RELEATED_COMPOUNDS_AIS": "",
                                  "SUBSTANCE_ORIGIN": "",
                                  "LAUNCH_STATUS": "LAUNCHED",
                                  "ISO_STATUS": "",
                                  "US_EPA_CHEMICAL_CODE": "",
                                  "UN_NUMBER": "2265",
                                  "STRAIN_NO": "",
                                  "GOOGLEPATENTHYPERLINKOFPATENTINVENTINFO": "",
                                  "INVENT_INFO2": "",
                                  "INVENT_INFO3": "",
                                  "dummy_1": "",
                                  "dummy_2": "",
                                  "dummy_3": "",
                                  "dummy_4": "",
                                  "dummy_5": "",
                                  "dummy_6": "",
                                  "dummy_7": "",
                                  "dummy_8": "",
                                  "dummy_9": "",
                                  "dummy_10": "",
                                  "dummy_11": "",
                                  "dummy_12": "",
                                  "dummy_13": "",
                                  "dummy_14": "",
                                  "year_wise_iso": "",
                                  "company_registration_number": "",
                                  "developmental_code": "",
                                  "created_at": "2024-05-06T04:28:08.224Z",
                                  "id": "66385c5dc4d3281f5f43821b"
                                }
                              ]
                            }
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/impurity/column-list": {
      "get": {
        "summary": "Impurity all columns list",
        "description": "This API is used to display column list data.",
        "tags": [
          "Impurity"
        ],
        "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": "trrn",
                                "name": "TECHNICAL ROUTES REGISTRATION NUMBER (TRRN)"
                              },
                              {
                                "value": "cmrn",
                                "name": "CHEMROBOTICS IMPURITY REGISTRATION NUMBER (CMRN)"
                              },
                              {
                                "value": "cvrn",
                                "name": "CHEMROBOTICS VENDOR REGISTRATION NUMBER (CVRN)"
                              },
                              {
                                "value": "cprn",
                                "name": "CHEMROBOTICS PATENT REGISTRATION NUMBER (CPRN)"
                              },
                              {
                                "value": "name",
                                "name": "NAME"
                              },
                              {
                                "value": "chemical_structure",
                                "name": "CHEMICAL STRUCTURE"
                              },
                              {
                                "value": "impurity_name",
                                "name": "IMPURITY NAME"
                              },
                              {
                                "value": "cat_no",
                                "name": "CAT. NO."
                              },
                              {
                                "value": "cas_rn",
                                "name": "CAS RN"
                              },
                              {
                                "value": "molecular_formula",
                                "name": "MOLECULAR FORMULA"
                              },
                              {
                                "value": "formula_weight",
                                "name": "FORMULA WEIGHT"
                              },
                              {
                                "value": "synonyms_common_name",
                                "name": "SYNONYMS / COMMON NAME"
                              },
                              {
                                "value": "chemical_name",
                                "name": "CHEMICAL NAME"
                              },
                              {
                                "value": "iupac",
                                "name": "IUPAC"
                              },
                              {
                                "value": "chemical_class",
                                "name": "CHEMICAL CLASS"
                              },
                              {
                                "value": "category",
                                "name": "CATEGORY"
                              },
                              {
                                "value": "description",
                                "name": "DESCRIPTION"
                              },
                              {
                                "value": "substance_origin",
                                "name": "SUBSTANCE ORIGIN"
                              },
                              {
                                "value": "trage_name_proprietary_name",
                                "name": "TRADE NAME (S) / PROPRIETARY NAME (S)"
                              },
                              {
                                "value": "related_compounds",
                                "name": "RELEATED COMPOUNDS (AI'S / API'S)"
                              },
                              {
                                "value": "pubchem_id",
                                "name": "PUBCHEM ID"
                              },
                              {
                                "value": "ec_no",
                                "name": "EC.NO."
                              },
                              {
                                "value": "us_epa_chemical_code",
                                "name": "US EPA CHEMICAL CODE"
                              },
                              {
                                "value": "unii",
                                "name": "UNII"
                              },
                              {
                                "value": "un_number",
                                "name": "UN NUMBER"
                              },
                              {
                                "value": "atc",
                                "name": "ANATOMICAL THERAPEUTIC CHEMICAL (ATC) CLASSIFICATION CODE"
                              },
                              {
                                "value": "dsstox_substance_id",
                                "name": "DSSTOX SUBSTANCE ID"
                              },
                              {
                                "value": "other_codes",
                                "name": "OTHER CODES"
                              },
                              {
                                "value": "pack_size",
                                "name": "PACK SIZE"
                              },
                              {
                                "value": "commentry",
                                "name": "COMMENTRY"
                              },
                              {
                                "value": "notes",
                                "name": "NOTES"
                              },
                              {
                                "value": "remarks",
                                "name": "REMARKS"
                              },
                              {
                                "value": "literature_reference",
                                "name": "LITERATURE REFERENCE"
                              },
                              {
                                "value": "information_sources",
                                "name": "INFORMATION SOURCES"
                              },
                              {
                                "value": "structure_elucidation_report",
                                "name": "STRUCTURE ELUCIDATION REPORT (SER)"
                              },
                              {
                                "value": "pdf_multiple_pdf",
                                "name": "PDF (MULTIPLE PDF)"
                              },
                              {
                                "value": "coa",
                                "name": "CERTIFICATE OF ANALYSIS (COA)"
                              }
                            ]
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/impurity/search-specific": {
      "post": {
        "summary": "Impurity search by GBRN",
        "description": "This API is used to show result of specific search.",
        "tags": [
          "Impurity"
        ],
        "consumes": [
          "application/json"
        ],
        "produces": [
          "application/json"
        ],
        "requestBody": {
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "required": [
                  "keyword",
                  "page_no"
                ],
                "properties": {
                  "keyword": {
                    "type": "string",
                    "description": "Enter keyword.",
                    "example": "10933"
                  },
                  "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": {
                              "impurity_count": 20,
                              "impurity_data": [
                                {
                                  "gbrn": "10933",
                                  "trrn": "",
                                  "cmrn": "",
                                  "cvrn": "",
                                  "cprn": "",
                                  "name": "Name: Allopurinol (USP Related compound A) Impurity\n",
                                  "chemical_structure": "79254CS.png",
                                  "impurity_name": "Allopurinol (USP Related compound A) Impurity\n",
                                  "cat_no": "A170001\n",
                                  "cas_rn": "CAS: 5334-31-6\n",
                                  "molecular_formula": "Molecular Formula: C4H6N4O\n",
                                  "formula_weight": "126.12 g/mol\n",
                                  "synonyms_common_name": "Synonyms: 3-Amino-1H-pyrazole-4-carboxamide; 3-Amino-4-carbamoylpyrazole; 3-Amino-4-pyrazolecarboxamide; NSC 1402; Allopurinol EP Impurity A\nDepositor-Supplied Synonyms: 1.3-Amino-1H-pyrazole-4-carboxamide\r\n2.5334-31-6\r\n3.3-AMINOPYRAZOLE-4-CARBOXAMIDE\r\n4.5-amino-1h-pyrazole-4-carboxamide\r\n5.3-AMINO-4-PYRAZOLECARBOXAMIDE\r\n6.1H-Pyrazole-4-carboxamide, 3-amino-\r\n7.3-Amino-pyrazole-4-carboxylic acid amide\r\n8.5-Amino-1H-pyrazole-4-carboxylic acid amide\r\n9.UNII-G43E3B7590\r\n10.G43E3B7590\r\n11.SR-01000945176\r\n12.3-Amino-4-carbamoylpyrazole\r\n13.NSC1402\r\n14.EINECS 226-252-3\r\n15.5-Amino-1H-pyrazole-4-carboxylic amide\r\n16.ALLOPURINOL IMPURITY A\r\n17.KSC597M7L\r\n18.MLS006011394\r\n19.5-aminopyrazole-4-carboxamide\r\n20.SCHEMBL918559\r\n21.CTK4J7675\r\n22.CTK7D2962\r\n23.LEFSNWUSTYESGC-UHFFFAOYSA-\r\n24.DTXSID50201489\r\n25.KS-00000B5K\r\n26.NSC-1402\r\n27.ANW-47883\r\n28.BBL010022\r\n29.MFCD00082808\r\n30.SBB014902\r\n31.STK711120\r\n32.ZINC17039868\r\n33.3-Amino-1(H)-pyrazole-4-carboxamide\r\n34.AKOS000145542\r\n35.AKOS005530692\r\n36.CS-W021829\r\n37.MCULE-1431282094\r\n38.NE44889\r\n39.PB13014\r\n40.QC-3927\r\n41.VP20078\r\n42.WT82112\r\n43.AK-48317\r\n44.AS-18400\r\n45.BR-48317\r\n46.SMR002529996\r\n47.SY004722\r\n48.AB0025337\r\n49.DB-006350\r\n50.DB-022177\r\n51.ST4143445\r\n52.AM20100307\r\n53.FT-0614992\r\n54.W6780\r\n55.EN300-30536\r\n56.11A791\r\n57.C-8200\r\n58.AB00373924-03\r\n59.3-Amino-1H-pyrazole-4-carboxamide 5334-31-6\r\n60.3-amino-2H-pyrazole-4-carboxamide; sulfuric acid\r\n61.334A316\r\n62.J-516659\r\n63.Q-100348\r\n64.SR-01000945176-1\r\n65.SR-01000945176-2\r\n66.Q27278715\r\n67.Z397585740\nCAS: 5334-31-6\n",
                                  "chemical_name": "5-Amino-4-pyrazolecarboxamide\n",
                                  "iupac": "5-amino-1H-pyrazole-4-carboxamide\n",
                                  "chemical_class": "",
                                  "category": "Impurity Standards\n",
                                  "description": "",
                                  "substance_origin": "",
                                  "trage_name_proprietary_name": "",
                                  "related_compounds": "",
                                  "pubchem_id": "79254\n",
                                  "ec_no": "",
                                  "us_epa_chemical_code": "",
                                  "unii": "G43E3B7590\n",
                                  "un_number": "",
                                  "atc": "",
                                  "dsstox_substance_id": "",
                                  "other_codes": "",
                                  "pack_size": "",
                                  "commentry": "",
                                  "notes": "",
                                  "remarks": "",
                                  "literature_reference": "",
                                  "information_sources": "",
                                  "structure_elucidation_report": "",
                                  "pdf_multiple_pdf": "",
                                  "coa": "",
                                  "dummy_1": "",
                                  "dummy_2": "",
                                  "dummy_3": "",
                                  "dummy_4": "",
                                  "dummy_5": "",
                                  "dummy_6": "",
                                  "dummy_7": "",
                                  "dummy_8": "",
                                  "dummy_9": "",
                                  "dummy_10": "",
                                  "created_at": "2024-04-22T10:17:43.758Z",
                                  "id": "66263957d181724dc7c8ce76"
                                },
                                {
                                  "gbrn": "10933",
                                  "trrn": "",
                                  "cmrn": "",
                                  "cvrn": "",
                                  "cprn": "",
                                  "name": "Name: Allopurinol EP Impurity D\n",
                                  "chemical_structure": "81472CS.png",
                                  "impurity_name": "Allopurinol EP Impurity D\n",
                                  "cat_no": "A170004\n",
                                  "cas_rn": "CAS: 6994-25-8\n",
                                  "molecular_formula": "Molecular Formula: C6H9N3O2\n",
                                  "formula_weight": "155.15 g/mol\n",
                                  "synonyms_common_name": "Synonyms: Allopurinol Related Compound D\nDepositor-Supplied Synonyms: 1.6994-25-8\r\n2.ethyl 5-amino-1H-pyrazole-4-carboxylate\r\n3.Ethyl 3-amino-1H-pyrazole-4-carboxylate\r\n4.19750-02-8\r\n5.Ethyl 3-amino-4-pyrazolecarboxylate\r\n6.3-Amino-4-carbethoxypyrazole\r\n7.1260243-04-6\r\n8.5-Amino-1H-pyrazole-4-carboxylic acid ethyl ester\r\n9.3-amino-1H-pyrazole-4-carboxylic acid ethyl ester\r\n10.Ethyl 3-aminopyrazole-4-carboxylate\r\n11.3-Amino-4-ethoxycarbonylpyrazole\r\n12.3-Amino-4-carbethoxypyrazol\r\n13.ethyl 5-aminopyrazole-4-carboxylate\r\n14.UNII-9GY5HA1GAA\r\n15.1H-Pyrazole-4-carboxylic acid, 3-amino-, ethyl ester\r\n16.103259-35-4\r\n17.9GY5HA1GAA\r\n18.MFCD00005238\r\n19.Ethyl-5-amino-1H-pyrazole-4-carboxylate\r\n20.3-Amino-4-pyrazolecarboxylic Acid Ethyl Ester\r\n21.Akos Bbs-00002579\r\n22.Ethyl3-amino-4-pyrazolecarboxylate\r\n23.3-Amino-1H-pyrazole-4-carboxylicacidethylester\r\n24.Ethyl 5-aminopyrazol-4-carboxylate\r\n25.EINECS 230-262-3\r\n26.NSC521580\r\n27.Allopurinol Impurity D\r\n28.PubChem13056\r\n29.PubChem13245\r\n30.ethyl 3-amino-2H-pyrazole-4-carboxylate\r\n31.ACMC-209obt\r\n32.Maybridge1_004633\r\n33.ChemDiv2_008143\r\n34.EC 230-262-3\r\n35.3-amino4-carbethoxypyrazole\r\n36.Pyrazole carboxylic ester 4\r\n37.KSC173O7J\r\n38.MLS000104802\r\n39.3-amino-4-carboethoxypyrazole\r\n40.SCHEMBL309220\r\n41.Allopurinol Related Compound D\r\n42.ACMC-209f16\r\n43.CHEMBL507899\r\n44.PYR259\r\n45.BDBM14781\r\n46.CTK0H3774\r\n47.CTK8B2194\r\n48.HMS554K13\r\n49.KS-00000ZNR\r\n50.YPXGHKWOJXQLQU-UHFFFAOYSA-\r\n51.DTXSID10990206\r\n52.3-amino-4-ethoxycarbonyl-pyrazole\r\n53.HMS1392C03\r\n54.HMS2341C24\r\n55.3-Amino-4-carboethoxy-1H-pyrazole\r\n56.ACT01763\r\n57.ACT04511\r\n58.ALBB-010725\r\n59.BCP21454\r\n60.CCG-2127\r\n61.ethyl 3-aminopyrazole 4-carboxylate\r\n62.KS-00000KA4\r\n63.ZINC4261766\r\n64.ethyl 3-amino-pyrazol-4-carboxylate\r\n65.Ethyl-3-Aminopyrazole-4-carboxylate\r\n66.3-Amino-4-carbethoxypyrazole, 99%\r\n67.ANW-23752\r\n68.ANW-35799\r\n69.BBL005567\r\n70.CL3441\r\n71.MFCD00114562\r\n72.SBB001936\r\n73.STK298895\r\n74.WT1329\r\n75.Ethyl 3-amino-4-pyrazole carboxylate\r\n76.ethyl 3-amino-pyrazole-4-carboxylate\r\n77.Ethyl-3-amino-4-pyrazole carboxylate\r\n78.AKOS000265416\r\n79.AKOS000266226\r\n80.AB03454\r\n81.CS-W007997\r\n82.DS-1709\r\n83.EBD2223847\r\n84.FS-1117\r\n85.MCULE-4305872035\r\n86.NSC-521580\r\n87.QC-4996\r\n88.SB21924\r\n89.VP20167\r\n90.VZ26281\r\n91.ethyl 3-amino-1h-pyrazole4-carboxylate\r\n92.Ethyl 5-amino-1H-4-pyrazolecarboxylate\r\n93.ethyl5-amino-1H-pyrazole-4-carboxylate\r\n94.KS-000000J7\r\n95.AC-23178\r\n96.AK-23899\r\n97.AK-75880\r\n98.AM807136\r\n99.BP-10088\r\n100.BR-23899\r\n101.BR-75880\r\n102.SC-16799\r\n103.SC-23541\r\n104.SMR000054735\r\n105.ST008471\r\n106.TS-00077\r\n107.Ethyl 3-aminopyrazole-4-carboxylate, 98%\r\n108.AB0008675\r\n109.Ethyl 3-amino-1H-pyrazole-4-carboxylate #\r\n110.A9244\r\n111.AM20100659\r\n112.BB 0219112\r\n113.BB 0256781\r\n114.E0766\r\n115.EU-0096157\r\n116.FT-0614993\r\n117.FT-0648468\r\n118.Z4038\r\n119.5-aminopyrazole-4-carboxylic acid ethyl ester\r\n120.EN300-26145\r\n121.5-amino-4-pyrazolecarboxylic acid, ethyl ester\r\n122.A-2551\r\n123.A-2776\r\n124.W-2968\r\n125.W-6179\r\n126.3-AMINO-4-PYRAZOLECARBOXYLICACIDETHYLESTER\r\n127.6994-25-8 ethyl 3-amino-4-pyrazolecarboxylate\r\n128.994A258\r\n129.994E258\r\n130.AE-562/40195503\r\n131.SR-01000577330\r\n132.SR-01000577330-1\r\n133.W-206450\r\n134.Ethyl 3-amino-1H-pyrazole-4-carboxylate 6994-25-8\r\n135.Ethyl 3-imino-2,3-dihydro-1H-pyrazole-4-carboxylate\r\n136.Ethyl 5-amino-1H-pyrazole-4-carboxylate, AldrichCPR\r\n137.Q27272542\r\n138.Z57683723\r\n139.F0255-0027\r\n140.Ethyl 5-amino-1H-pyrazole-4-carboxylate 1260243-04-6\r\n141.1H-PYRAZOLE-4-CARBOXYLIC ACID, 5-AMINO-, ETHYL ESTER\r\n142.Allopurinol impurity D, European Pharmacopoeia (EP) Reference Standard\r\n143.Allopurinol Related Compound D, United States Pharmacopeia (USP) Reference Standard\nCAS: 6994-25-8\n",
                                  "chemical_name": "Ethyl 5-amino-1H-pyrazole-4-carboxylate\n",
                                  "iupac": "ethyl 5-amino-1H-pyrazole-4-carboxylate\n",
                                  "chemical_class": "",
                                  "category": "Impurity Standards\n",
                                  "description": "",
                                  "substance_origin": "",
                                  "trage_name_proprietary_name": "",
                                  "related_compounds": "",
                                  "pubchem_id": "81472\n",
                                  "ec_no": "230-262-3\n",
                                  "us_epa_chemical_code": "",
                                  "unii": "9GY5HA1GAA\n",
                                  "un_number": "",
                                  "atc": "",
                                  "dsstox_substance_id": "",
                                  "other_codes": "",
                                  "pack_size": "",
                                  "commentry": "",
                                  "notes": "",
                                  "remarks": "",
                                  "literature_reference": "",
                                  "information_sources": "",
                                  "structure_elucidation_report": "",
                                  "pdf_multiple_pdf": "",
                                  "coa": "",
                                  "dummy_1": "",
                                  "dummy_2": "",
                                  "dummy_3": "",
                                  "dummy_4": "",
                                  "dummy_5": "",
                                  "dummy_6": "",
                                  "dummy_7": "",
                                  "dummy_8": "",
                                  "dummy_9": "",
                                  "dummy_10": "",
                                  "created_at": "2024-04-22T10:17:43.758Z",
                                  "id": "66263957d181724dc7c8ce7f"
                                }
                              ]
                            }
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/chemi-tracker/column-list": {
      "get": {
        "summary": "Chemi Tracker all columns list",
        "description": "This API is used to display column list data.",
        "tags": [
          "Chemi Tracker"
        ],
        "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": "GBRN"
                              },
                              {
                                "value": "chemical_directory_search_term_id",
                                "name": "CHEMICAL DIRECTORY SEARCH TERM ID"
                              },
                              {
                                "value": "buychem_registration_number",
                                "name": "BUYCHEM REGISTRATION NUMBER"
                              },
                              {
                                "value": "vendor_registration_number",
                                "name": "VENDOR REGISTRATION NUMBER"
                              },
                              {
                                "value": "chemical_name",
                                "name": "CHEMICAL NAME"
                              },
                              {
                                "value": "chemical_structure",
                                "name": "CHEMICAL STRUCTURE"
                              },
                              {
                                "value": "role_of_chemical_ai_intermediate",
                                "name": "ROLE OF CHEMICAL (AI/INTERMEDIATE)"
                              },
                              {
                                "value": "active_pharmaceutical_ingredients",
                                "name": "ACTIVE PHARMACEUTICAL INGREDIENTS"
                              },
                              {
                                "value": "field_of_applications",
                                "name": "FIELD OF APPLICATION(S)"
                              },
                              {
                                "value": "iupac",
                                "name": "IUPAC"
                              },
                              {
                                "value": "cas_rn",
                                "name": "CAS RN"
                              },
                              {
                                "value": "cas_name",
                                "name": "CAS NAME"
                              },
                              {
                                "value": "chemical_class",
                                "name": "CHEMICAL CLASS"
                              },
                              {
                                "value": "molecular_formula",
                                "name": "MOLECULAR FORMULA"
                              },
                              {
                                "value": "molecular_weight",
                                "name": "MOLECULAR WEIGHT"
                              },
                              {
                                "value": "synonyms_common_name",
                                "name": "SYNONYMS / COMMON NAME"
                              },
                              {
                                "value": "trade_name_s_proprietary_name_s",
                                "name": "TRADE NAME (S) / PROPRIETARY NAME (S)"
                              },
                              {
                                "value": "summary_physicochemical_properties_experimental",
                                "name": "SUMMARY PHYSICOCHEMICAL PROPERTIES (EXPERIMENTAL)"
                              },
                              {
                                "value": "releated_compounds_ais_api's",
                                "name": "RELEATED COMPOUNDS (AI'S / API'S)"
                              },
                              {
                                "value": "cas_rn_related_to_active_ingredient_as_intermediate_impurity_etc",
                                "name": "CAS RN. RELATED TO ACTIVE INGREDIENT (AS INTERMEDIATE / IMPURITY ETC.)"
                              },
                              {
                                "value": "company_name",
                                "name": "COMPANY NAME"
                              },
                              {
                                "value": "company_logo",
                                "name": "COMPANY LOGO"
                              },
                              {
                                "value": "company_description",
                                "name": "COMPANY DESCRIPTION"
                              },
                              {
                                "value": "company_website",
                                "name": "COMPANY WEBSITE"
                              },
                              {
                                "value": "country_of_company",
                                "name": "COUNTRY OF COMPANY"
                              },
                              {
                                "value": "email",
                                "name": "EMAIL"
                              },
                              {
                                "value": "contact_details",
                                "name": "CONTACT DETAILS"
                              },
                              {
                                "value": "description",
                                "name": "DESCRIPTION"
                              },
                              {
                                "value": "regulatory_registered_countries",
                                "name": "REGULATORY REGISTERED COUNTRIES"
                              },
                              {
                                "value": "quantity",
                                "name": "QUANTITY"
                              },
                              {
                                "value": "pack_size",
                                "name": "PACK SIZE"
                              },
                              {
                                "value": "purity",
                                "name": "PURITY"
                              },
                              {
                                "value": "currency",
                                "name": "CURRENCY"
                              },
                              {
                                "value": "price",
                                "name": "PRICE"
                              },
                              {
                                "value": "priority",
                                "name": "PRIORITY"
                              },
                              {
                                "value": "commentry",
                                "name": "COMMENTRY"
                              },
                              {
                                "value": "notes",
                                "name": "NOTES"
                              },
                              {
                                "value": "remark_s",
                                "name": "REMARK (S)"
                              },
                              {
                                "value": "literature",
                                "name": "LITERATURE"
                              },
                              {
                                "value": "information_sources",
                                "name": "INFORMATION SOURCES"
                              },
                              {
                                "value": "structure_elucidation_report_ser",
                                "name": "STRUCTURE ELUCIDATION REPORT (SER)"
                              },
                              {
                                "value": "certificate_of_analysis_coa",
                                "name": "CERTIFICATE OF ANALYSIS (COA)"
                              },
                              {
                                "value": "pdf_multiple_pdf",
                                "name": "PDF (MULTIPLE PDF)"
                              }
                            ]
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/chemi-tracker/search-specific": {
      "post": {
        "summary": "Chemi Tracker search by GBRN",
        "description": "This API is used to show result of specific search.",
        "tags": [
          "Chemi Tracker"
        ],
        "consumes": [
          "application/json"
        ],
        "produces": [
          "application/json"
        ],
        "requestBody": {
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "required": [
                  "keyword",
                  "page_no"
                ],
                "properties": {
                  "keyword": {
                    "type": "string",
                    "description": "Enter keyword.",
                    "example": "18555"
                  },
                  "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": {
                              "chemi_tracker_count": 1,
                              "chemi_tracker_data": [
                                {
                                  "gbrn": "10933;18555",
                                  "chemical_directory_search_term_id": "87638",
                                  "buychem_registration_number": "",
                                  "vendor_registration_number": "14",
                                  "chemical_name": "Allopurinol",
                                  "chemical_structure": "",
                                  "role_of_chemical_ai_intermediate": "Antigout",
                                  "active_pharmaceutical_ingredients": "Allopurinol",
                                  "field_of_applications": "",
                                  "iupac": "",
                                  "cas_rn": "315-30-0",
                                  "cas_name": "",
                                  "chemical_class": "",
                                  "molecular_formula": "",
                                  "molecular_weight": "",
                                  "synonyms_common_name": "",
                                  "trade_name_s_proprietary_name_s": "",
                                  "summary_physicochemical_properties_experimental": "",
                                  "releated_compounds_ais_api's": "",
                                  "cas_rn_related_to_active_ingredient_as_intermediate_impurity_etc": "",
                                  "company_name": "JPN Pharma Pvt. Ltd.",
                                  "company_logo": "JPN Pharma.png",
                                  "company_description": "JPN Pharma renowned pharma player having a wide range of quality products and specialise in manufacturing Active Pharmaceutical Ingredients (API) and Drug Intermediates (DI’s). The company commenced its business in 1988 in Mumbai (India)",
                                  "company_website": "http://www.jpnpharma.net/active-pharma-ingredients/",
                                  "country_of_company": "India",
                                  "email": "info@jpnpharma.net",
                                  "contact_details": "1, 2 & 8, Arihant Enclave,\nAshok Nagar,Ashok Chakravarty Road, Kandivali (E),Mumbai 400 101.\n+91.22.6859 6859",
                                  "description": "",
                                  "regulatory_registered_countries": "",
                                  "quantity": "",
                                  "pack_size": "",
                                  "purity": "",
                                  "currency": "",
                                  "price": "",
                                  "priority": "",
                                  "commentry": "",
                                  "notes": "",
                                  "remark_s": "",
                                  "literature": "",
                                  "information_sources": "",
                                  "structure_elucidation_report_ser": "",
                                  "certificate_of_analysis_coa": "",
                                  "pdf_multiple_pdf": "",
                                  "dummy_1": "",
                                  "dummy_2": "",
                                  "dummy_3": "",
                                  "dummy_4": "",
                                  "dummy_5": "",
                                  "dummy_6": "",
                                  "dummy_7": "",
                                  "dummy_8": "",
                                  "dummy_9": "",
                                  "dummy_10": "",
                                  "created_at": "2024-01-11T06:32:18.228Z",
                                  "id": "659f8b6ff75f82c7d52e3ef8"
                                }
                              ]
                            }
                          }
                        }
                      }
                    },
                    {
                      "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."
                          ]
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    }
  },
  "tags": {
    "tags": [
      {
        "name": "Auth",
        "description": "This is auth module."
      },
      {
        "name": "Technical Routes",
        "description": "This is technical routes data module."
      },
      {
        "name": "Chemical Directory",
        "description": "This is chemical directory data module."
      },
      {
        "name": "Basic Product Info",
        "description": "This is basic product data module."
      },
      {
        "name": "Impurity",
        "description": "This is impurity data module."
      },
      {
        "name": "Chemi Tracker",
        "description": "This is chemi tracker data module."
      }
    ]
  },
  "components": {
    "securitySchemes": {
      "ApiKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "api-key",
        "description": "Example value: AzI0f64MzcpKE1rNmlJzTfb8PTfcdQ9y"
      }
    }
  }
}
